- Updated environment name. - Updated variables. - AKS service principal creds moved to the operator Key Vault.
11 lines
300 B
HCL
11 lines
300 B
HCL
module "operator_keyvault" {
|
|
source = "../../modules/keyvault"
|
|
name = "ops"
|
|
region = var.region
|
|
owner = var.owner
|
|
environment = var.environment
|
|
tenant_id = var.tenant_id
|
|
principal_id = ""
|
|
admin_principals = var.admin_users
|
|
}
|