Skip to content

Commit

Permalink
fix:configured name and environment from locals in vault module
Browse files Browse the repository at this point in the history
  • Loading branch information
vjdbj committed Oct 16, 2024
1 parent 1a4a752 commit 66fd2e8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions examples/complete/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ provider "azurerm" {
data "azurerm_client_config" "current_client_config" {}

locals {
name = "lacoster-23"
environment = "maximum-32"
name = "app"
environment = "test"
label_order = ["name", "environment"]
}

Expand Down Expand Up @@ -81,9 +81,9 @@ module "vault" {
azurerm.main_sub = azurerm
}

name = "oliveware-23"
environment = "vilod-32"
label_order = ["name", "environment", ]
name = local.name
environment = local.environment
label_order = local.label_order
resource_group_name = module.resource_group.resource_group_name
location = module.resource_group.resource_group_location
admin_objects_ids = [data.azurerm_client_config.current_client_config.object_id]
Expand Down

0 comments on commit 66fd2e8

Please sign in to comment.