summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2024-03-12 20:36:35 +0200
committerPaul Buetow <paul@buetow.org>2024-03-12 20:36:35 +0200
commitcefb75f99c1be916d192613a8df4c49876a9e301 (patch)
treee30a09c419d6cbecb0313708591c9a8b1872a47c
parent60243ccf07060f593b16e373578b0a5d5d44cc94 (diff)
change buetow.cloud to cool.buetow.org zone
-rw-r--r--README.md2
-rw-r--r--org-buetow-base/outputs.tf8
-rw-r--r--org-buetow-base/zones.tf4
3 files changed, 7 insertions, 7 deletions
diff --git a/README.md b/README.md
index ab2ee88..0ce31a7 100644
--- a/README.md
+++ b/README.md
@@ -13,7 +13,7 @@ Go to AWS Secrets manager manually and create it!
### Domain Domain TLS certificate
-Create DNS zone and TLS certificate in AWS manually. E.g. create `buetow.cloud` zone and a TLS certificate for `buetow.cloud,*.buetow.cloud`. Add the Certificate ARN to the `org-buetow-base`'s output as `zone_certificate_arn`.
+Create DNS zone and TLS certificate in AWS manually. E.g. create `cool.buetow.org` zone and a TLS certificate for `cool.buetow.org,*.cool.buetow.org`. Add the Certificate ARN to the `org-buetow-base`'s output as `zone_certificate_arn`.
## Create base environment
diff --git a/org-buetow-base/outputs.tf b/org-buetow-base/outputs.tf
index 17a0e79..f490c14 100644
--- a/org-buetow-base/outputs.tf
+++ b/org-buetow-base/outputs.tf
@@ -31,16 +31,16 @@ output "allow_outbound_sg_id" {
}
output "zone_id" {
- value = data.aws_route53_zone.buetow_cloud.zone_id
+ value = data.aws_route53_zone.cool_buetow_org.zone_id
}
output "zone_name" {
- value = data.aws_route53_zone.buetow_cloud.name
+ value = data.aws_route53_zone.cool_buetow_org.name
}
output "zone_certificate_arn" {
- # For buetow.cloud and *.buetow.cloud
- value = "arn:aws:acm:eu-central-1:634617747016:certificate/fbf5627c-9a4c-4c62-9c33-038e140f3f12"
+ # For cool.buetow.org and *.cool.buetow.org
+ value = "arn:aws:acm:eu-central-1:634617747016:certificate/834a2baa-5aa6-4bdf-8945-9189f3b9cee6"
}
output "ecr_radicale_read_arn" {
diff --git a/org-buetow-base/zones.tf b/org-buetow-base/zones.tf
index e565684..f9fc710 100644
--- a/org-buetow-base/zones.tf
+++ b/org-buetow-base/zones.tf
@@ -1,4 +1,4 @@
-data "aws_route53_zone" "buetow_cloud" {
- name = "buetow.cloud."
+data "aws_route53_zone" "cool_buetow_org" {
+ name = "cool.buetow.org."
private_zone = false
}