postgres-provisionning/variables.tf

9 lines
219 B
Terraform
Raw Normal View History

variable "postgres" {
description = "postgres configuration"
sensitive = true
type = object({
user = optional(string, "postgres")
secret = string
db = optional(string, "postgres")
})
}