Files
tools/hashicorp-vault/iac/variables.tf
Gabriel Radureau 24c3d92522
All checks were successful
Helm Charts / Detect changed charts (push) Successful in 18s
Helm Charts / Library charts tool (push) Has been skipped
Helm Charts / Application charts pgcat (push) Has been skipped
enable per app role list of policies
2025-10-30 10:05:25 +01:00

17 lines
347 B
HCL

variable "gitea_app_id" {
type = string
}
variable "POSTGRES_CREDENTIALS_EDITOR_USERNAME" {
type = string
sensitive = true
}
variable "POSTGRES_CREDENTIALS_EDITOR_PASSWORD" {
type = string
sensitive = true
}
variable "applications" {
type = set(object({
name = string
policies = optional(list(string), [])
}))
}