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
|
2023-10-15 13:52:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
variable "postgres_password_admin" {
|
|
|
|
|
description = "Postgres admin password"
|
|
|
|
|
type = string
|
|
|
|
|
sensitive = true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
variable "postgres_password_listory" {
|
|
|
|
|
description = "Postgres listory password"
|
|
|
|
|
type = string
|
|
|
|
|
sensitive = true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
variable "postgres_password_gitea" {
|
|
|
|
|
description = "Postgres gitea password"
|
|
|
|
|
type = string
|
|
|
|
|
sensitive = true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
variable "postgres_password_exporter" {
|
|
|
|
|
description = "Postgres exporter password"
|
|
|
|
|
type = string
|
|
|
|
|
sensitive = true
|
|
|
|
|
}
|