fix(vault): rename applications.policies → ops_policies (cms CI was silently missing its R2 policy) #4

Merged
arcodange merged 1 commits from claude/fix-cms-ops-policies-key into main 2026-06-28 19:22:07 +02:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 3170a341d1 - Show all commits

View File

@@ -79,7 +79,7 @@ module "app_policies" {
for_each = { for app in var.applications : app.name => app }
name = each.value.name
envs = each.value.envs
ops_policies = each.value.policies
ops_policies = each.value.ops_policies
service_account_names = each.value.service_account_names
service_account_namespaces = each.value.service_account_namespaces
gitea_app_id = var.gitea_app_id

View File

@@ -12,7 +12,7 @@ variable "POSTGRES_CREDENTIALS_EDITOR_PASSWORD" {
variable "applications" {
type = set(object({
name = string
policies = optional(list(string), [])
ops_policies = optional(list(string), [])
service_account_names = optional(list(string), [])
service_account_namespaces = optional(list(string), [])
# Multi-env extension: list of envs this app deploys to. Defaults to ["prod"] for