diff --git a/auto_policy_testing/red/vnet/application_gateway.tf b/auto_policy_testing/red/vnet/application_gateway.tf index 06024596..e863030f 100644 --- a/auto_policy_testing/red/vnet/application_gateway.tf +++ b/auto_policy_testing/red/vnet/application_gateway.tf @@ -1,7 +1,7 @@ resource "azurerm_virtual_network" "this1" { name = "${module.naming.resource_prefix.vnet}1" address_space = ["10.0.0.0/16"] - location = data.terraform_remote_state.common.outputs.location + location = "eastus" resource_group_name = data.terraform_remote_state.common.outputs.resource_group tags = module.naming.default_tags @@ -16,7 +16,7 @@ resource "azurerm_subnet" "this1" { resource "azurerm_public_ip" "this" { name = "${random_string.this.result}_pip_red" - location = data.terraform_remote_state.common.outputs.location + location = "eastus" resource_group_name = data.terraform_remote_state.common.outputs.resource_group allocation_method = "Static" sku = "Standard" @@ -26,7 +26,7 @@ resource "azurerm_public_ip" "this" { resource "azurerm_application_gateway" "this" { name = "${random_string.this.result}_app_gateway_red" - location = data.terraform_remote_state.common.outputs.location + location = "eastus" resource_group_name = data.terraform_remote_state.common.outputs.resource_group sku { diff --git a/auto_policy_testing/red/vnet/virtual_network.tf b/auto_policy_testing/red/vnet/virtual_network.tf index a10338fd..d6ddf1f3 100644 --- a/auto_policy_testing/red/vnet/virtual_network.tf +++ b/auto_policy_testing/red/vnet/virtual_network.tf @@ -1,7 +1,7 @@ resource "azurerm_virtual_network" "this" { name = module.naming.resource_prefix.vnet address_space = ["10.0.0.0/16"] - location = data.terraform_remote_state.common.outputs.location + location = "eastus" resource_group_name = data.terraform_remote_state.common.outputs.resource_group tags = module.naming.default_tags @@ -16,7 +16,7 @@ resource "azurerm_subnet" "this" { resource "azurerm_network_interface" "this" { name = "${module.naming.resource_prefix.networkinterface}-vnet" - location = data.terraform_remote_state.common.outputs.location + location = "eastus" resource_group_name = data.terraform_remote_state.common.outputs.resource_group ip_configuration { diff --git a/auto_policy_testing/red/vnet/vm.tf b/auto_policy_testing/red/vnet/vm.tf index da60daba..fe2ece4f 100644 --- a/auto_policy_testing/red/vnet/vm.tf +++ b/auto_policy_testing/red/vnet/vm.tf @@ -1,6 +1,6 @@ resource "azurerm_linux_virtual_machine" "this" { name = "${module.naming.resource_prefix.vm}rdnet" - location = data.terraform_remote_state.common.outputs.location + location = "eastus" resource_group_name = data.terraform_remote_state.common.outputs.resource_group size = "Standard_B1s" admin_username = random_string.this.result