This changes the configuration of the postgres master username and password. Instead of committing to source (short term hack), this now sources those secrets from KeyVault. Those secrets are generated and populated via secrets-tool.
11 lines
305 B
HCL
11 lines
305 B
HCL
module "operator_keyvault" {
|
|
source = "../../modules/keyvault"
|
|
name = "operator"
|
|
region = var.region
|
|
owner = var.owner
|
|
environment = var.environment
|
|
tenant_id = var.tenant_id
|
|
principal_id = ""
|
|
admin_principals = var.admin_users
|
|
}
|