9 lines
219 B
HCL
9 lines
219 B
HCL
variable "postgres" {
|
|
description = "postgres configuration"
|
|
sensitive = true
|
|
type = object({
|
|
user = optional(string, "postgres")
|
|
secret = string
|
|
db = optional(string, "postgres")
|
|
})
|
|
} |