169163334 - Uses the k8s principal for access to keyvault from k8s nodes

This commit is contained in:
Rob Gil 2020-01-08 15:07:59 -05:00
parent b233cb253f
commit 3986f3c91f

View File

@ -1,8 +1,9 @@
module "keyvault" { module "keyvault" {
source = "../../modules/keyvault" source = "../../modules/keyvault"
name = var.name name = var.name
region = var.region region = var.region
owner = var.owner owner = var.owner
environment = var.environment environment = var.environment
tenant_id = var.tenant_id tenant_id = var.tenant_id
principal_id = module.k8s.principal_id
} }