Skip to content

Commit

Permalink
fix: Updated vault tag in aks_with_microsoft_entra_id example
Browse files Browse the repository at this point in the history
  • Loading branch information
vjdbj committed Oct 11, 2024
1 parent d1ef8b2 commit 367a701
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions examples/aks_with_microsoft_entra_id/example.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
provider "azurerm" {
features {}
subscription_id = "000000-11111-1223-XXX-XXXXXXXXXXXX"
}
provider "azurerm" {
features {}
alias = "peer"
subscription_id = "000000-11111-1223-XXX-XXXXXXXXXXXX"
}
data "azurerm_client_config" "current_client_config" {}

Expand Down Expand Up @@ -52,7 +58,7 @@ module "subnet" {

module "log-analytics" {
source = "clouddrove/log-analytics/azure"
version = "1.0.1"
version = "1.1.0"
name = "app"
environment = "test"
label_order = ["name", "environment"]
Expand All @@ -64,8 +70,12 @@ module "log-analytics" {

module "vault" {
source = "clouddrove/key-vault/azure"
version = "1.1.0"
version = "1.2.0"
name = "apptestwvshaks"
providers = {
azurerm.dns_sub = azurerm.peer, #change this to other alias if dns hosted in other subscription.
azurerm.main_sub = azurerm
}
#environment = local.environment
resource_group_name = module.resource_group.resource_group_name
location = module.resource_group.resource_group_location
Expand Down

0 comments on commit 367a701

Please sign in to comment.