diff options
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | org-buetow-base/outputs.tf | 8 | ||||
| -rw-r--r-- | org-buetow-base/zones.tf | 4 |
3 files changed, 7 insertions, 7 deletions
@@ -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 } |
