- Updated environment name. - Updated variables. - AKS service principal creds moved to the operator Key Vault.
12 lines
327 B
HCL
12 lines
327 B
HCL
module "keyvault" {
|
|
source = "../../modules/keyvault"
|
|
name = "cz"
|
|
region = var.region
|
|
owner = var.owner
|
|
environment = var.environment
|
|
tenant_id = var.tenant_id
|
|
principal_id = "f9bcbe58-8b73-4957-aee2-133dc3e58063"
|
|
admin_principals = var.admin_users
|
|
}
|
|
|