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