Skip to content

Commit

Permalink
skip: update CI 231
Browse files Browse the repository at this point in the history
  • Loading branch information
vit-corp committed Aug 31, 2024
1 parent 1c0fa8c commit 1d87992
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions auto_policy_testing/red/vnet/application_gateway.tf
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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"
Expand All @@ -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 {
Expand Down
4 changes: 2 additions & 2 deletions auto_policy_testing/red/vnet/virtual_network.tf
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion auto_policy_testing/red/vnet/vm.tf
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 1d87992

Please sign in to comment.