Skip to content

Commit

Permalink
fix: update variable in example.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
themaheshyadav committed May 23, 2023
1 parent 3d77e29 commit 0ffd921
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions _example/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module "resource_group" {

name = "app"
environment = "test"
label_order = ["environment", "name", ]
label_order = ["name", "environment"]
location = "East US"
}
#Vnet
Expand All @@ -19,7 +19,6 @@ module "vnet" {

name = "app"
environment = "test"
label_order = ["name", "environment"]
resource_group_name = module.resource_group.resource_group_name
location = module.resource_group.resource_group_location
address_space = "10.0.0.0/16"
Expand All @@ -31,7 +30,6 @@ module "subnet" {

name = "app"
environment = "test"
label_order = ["name", "environment"]
resource_group_name = module.resource_group.resource_group_name
location = module.resource_group.resource_group_location
virtual_network_name = join("", module.vnet.vnet_name)
Expand Down Expand Up @@ -60,7 +58,7 @@ module "container-registry" {
sku = "Premium"
}

# to enable private endpoint.
# to enable private endpoint.
virtual_network_id = join("", module.vnet.vnet_id)
subnet_id = module.subnet.default_subnet_id
private_subnet_address_prefix = module.subnet.default_subnet_address_prefixes
Expand Down

0 comments on commit 0ffd921

Please sign in to comment.