We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8053496 commit 79ac777Copy full SHA for 79ac777
outputs.tf
@@ -101,13 +101,7 @@ output "private_dns_zone_ids" {
101
value = toset([for _, v in module.private_dns_zones : v.id])
102
}
103
104
-
105
-# output "zone_name" {
106
-# description = "Name of the private hosted zone."
107
-# value = azurerm_private_dns_zone.private_zone.name
108
-# }
109
110
-# output "id" {
111
-# description = "ID of the private DNS Zone"
112
-# value = azurerm_private_dns_zone.private_zone.id
113
+output "postgres_private_dns_zone_id" {
+ description = "The ID of the Postgres private DNS zone."
+ value = module.private_dns_zones["privatelink.postgres.database.azure.com"].id
+}
0 commit comments