Skip to content

Commit

Permalink
fix: resource group name
Browse files Browse the repository at this point in the history
  • Loading branch information
Telemaco019 committed Dec 11, 2024
1 parent cb55851 commit aa832f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ resource "azurerm_private_dns_zone" "flexible_postgres" {
count = var.private_dns_zones.flexible_postgres == null ? 1 : 0

name = "${var.resource_prefix}.nebuly.postgres.database.azure.com"
resource_group_name = var.private_dns_zones.flexible_postgres.resource_group_name
resource_group_name = data.azurerm_resource_group.main
}
resource "azurerm_private_dns_zone_virtual_network_link" "flexible_postgres" {
count = var.private_dns_zones.flexible_postgres == null ? 1 : 0
Expand Down

0 comments on commit aa832f0

Please sign in to comment.