diff options
Diffstat (limited to 'org-buetow-base')
| -rw-r--r-- | org-buetow-base/outputs.tf | 11 | ||||
| -rw-r--r-- | org-buetow-base/zones.tf | 8 |
2 files changed, 6 insertions, 13 deletions
diff --git a/org-buetow-base/outputs.tf b/org-buetow-base/outputs.tf index 7a8df70..5f585fe 100644 --- a/org-buetow-base/outputs.tf +++ b/org-buetow-base/outputs.tf @@ -30,14 +30,15 @@ output "allow_outbound_sg_id" { value = aws_security_group.allow_outbound.id } -output "buetow_cloud_zone_id" { +output "zone_id" { value = data.aws_route53_zone.buetow_cloud.zone_id } -#output "buetow_internal_zone_id" { -# value = aws_route53_zone.buetow_internal.zone_id -#} +output "zone_name" { + value = data.aws_route53_zone.buetow_cloud.name +} -output "buetow_cloud_certificate_arn" { +output "zone_certificate_arn" { + # For buetow.cloud and *.buetow.cloud value = "arn:aws:acm:eu-central-1:634617747016:certificate/fbf5627c-9a4c-4c62-9c33-038e140f3f12" } diff --git a/org-buetow-base/zones.tf b/org-buetow-base/zones.tf index 4f8d945..e565684 100644 --- a/org-buetow-base/zones.tf +++ b/org-buetow-base/zones.tf @@ -2,11 +2,3 @@ data "aws_route53_zone" "buetow_cloud" { name = "buetow.cloud." private_zone = false } - -#resource "aws_route53_zone" "buetow_internal" { -# name = "buetow.internal" -# -# vpc { -# vpc_id = aws_vpc.vpc.id -# } -#} |
