Skip to content

Commit

Permalink
fix: renamed resources as convention
Browse files Browse the repository at this point in the history
  • Loading branch information
vjdbj committed Oct 16, 2024
1 parent c85998f commit 07c4df8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions examples/complete/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ module "resource_group" {
source = "clouddrove/resource-group/azure"
version = "1.0.2"

name = "Public-app1"
environment = "test2"
name = "Public-app"
environment = "test"
label_order = ["name", "environment", ]
location = "Canada Central"
}
Expand All @@ -24,8 +24,8 @@ module "vnet" {
source = "clouddrove/vnet/azure"
version = "1.0.4"

name = "app1"
environment = "test2"
name = "app"
environment = "test"
label_order = ["name", "environment"]
resource_group_name = module.resource_group.resource_group_name
location = module.resource_group.resource_group_location
Expand All @@ -36,8 +36,8 @@ module "subnet" {
source = "clouddrove/subnet/azure"
version = "1.2.1"

name = "app1"
environment = "test2"
name = "app"
environment = "test"
label_order = ["name", "environment"]
resource_group_name = module.resource_group.resource_group_name
location = module.resource_group.resource_group_location
Expand Down

0 comments on commit 07c4df8

Please sign in to comment.