From cefb75f99c1be916d192613a8df4c49876a9e301 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Tue, 12 Mar 2024 20:36:35 +0200 Subject: change buetow.cloud to cool.buetow.org zone --- README.md | 2 +- org-buetow-base/outputs.tf | 8 ++++---- org-buetow-base/zones.tf | 4 ++-- 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 } -- cgit v1.2.3