feat: finish up new postgres setup

This commit is contained in:
Julian Tölle 2023-10-15 13:52:57 +02:00
parent eb72e031d4
commit 33733de02c
4 changed files with 217 additions and 48 deletions

View file

@ -12,4 +12,28 @@ variable "postgres_databases" {
password = string
}))
sensitive = true
}
}
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
}