Skip to content

Commit

Permalink
Merge pull request #7 from schubergphilis/dependency_fix
Browse files Browse the repository at this point in the history
bug: dependency fix for vnet resource group
  • Loading branch information
Blankf authored Nov 8, 2024
2 parents 5e7daf7 + 742c7ca commit 60b8c89
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 @@ -11,8 +11,8 @@ resource "azurerm_resource_group" "this" {

resource "azurerm_virtual_network" "this" {
name = var.vnet_name
location = var.resource_group.location
resource_group_name = var.resource_group.name
location = azurerm_resource_group.this.location
resource_group_name = azurerm_resource_group.this.name
address_space = var.vnet_address_space
dns_servers = var.vnet_dns_servers
tags = merge(
Expand Down

0 comments on commit 60b8c89

Please sign in to comment.