Skip to content

Commit

Permalink
fix: typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Telemaco019 committed Dec 11, 2024
1 parent aa832f0 commit c5aa5fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 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 = data.azurerm_resource_group.main
resource_group_name = data.azurerm_resource_group.main.name
}
resource "azurerm_private_dns_zone_virtual_network_link" "flexible_postgres" {
count = var.private_dns_zones.flexible_postgres == null ? 1 : 0
Expand All @@ -225,7 +225,7 @@ resource "azurerm_private_dns_zone_virtual_network_link" "flexible_postgres" {
resource "azurerm_private_dns_zone" "key_vault" {
count = var.private_dns_zones.key_vault == null ? 1 : 0
name = "privatelink.vaultcore.azure.net"
resource_group_name = var.private_dns_zones.key_vault.resource_group_name
resource_group_name = data.azurerm_resource_group.main.name
}
resource "azurerm_private_dns_zone_virtual_network_link" "key_vault" {
count = var.private_dns_zones.key_vault == null ? 1 : 0
Expand Down

0 comments on commit c5aa5fb

Please sign in to comment.