home-cloud/variables.tf

15 lines
311 B
Terraform
Raw Normal View History

2023-02-25 23:22:41 +01:00
variable "listory_token" {
description = "Listory API Token"
type = string
sensitive = true
}
2023-09-23 12:27:57 +02:00
variable "postgres_databases" {
description = "Postgres databases to create"
type = list(object({
id = string
user = string
password = string
}))
sensitive = true
}