Skip to content

Commit

Permalink
Output root zone IDs in vpc module
Browse files Browse the repository at this point in the history
  • Loading branch information
samsimpson1 committed Oct 3, 2024
1 parent 94b8883 commit 18903ac
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions terraform/deployments/vpc/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,13 @@ output "rds_enhanced_monitoring_role_arn" {
description = "The ARN of the IAM role for RDS Enhanced Monitoring"
value = aws_iam_role.rds_enhanced_monitoring.arn
}

output "internal_root_zone_id" {
description = "ID of the internal Route53 DNS zone"
value = aws_route53_zone.internal_zone.id
}

output "external_root_zone_id" {
description = "ID of the external Route53 DNS zone"
value = aws_route53_zone.external_zone.id
}

0 comments on commit 18903ac

Please sign in to comment.