Skip to content

Commit 66fd2e8

Browse files
committed
fix:configured name and environment from locals in vault module
1 parent 1a4a752 commit 66fd2e8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

examples/complete/main.tf

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ provider "azurerm" {
1212
data "azurerm_client_config" "current_client_config" {}
1313

1414
locals {
15-
name = "lacoster-23"
16-
environment = "maximum-32"
15+
name = "app"
16+
environment = "test"
1717
label_order = ["name", "environment"]
1818
}
1919

@@ -81,9 +81,9 @@ module "vault" {
8181
azurerm.main_sub = azurerm
8282
}
8383

84-
name = "oliveware-23"
85-
environment = "vilod-32"
86-
label_order = ["name", "environment", ]
84+
name = local.name
85+
environment = local.environment
86+
label_order = local.label_order
8787
resource_group_name = module.resource_group.resource_group_name
8888
location = module.resource_group.resource_group_location
8989
admin_objects_ids = [data.azurerm_client_config.current_client_config.object_id]

0 commit comments

Comments
 (0)