mirror of
https://github.com/apricote/home-cloud.git
synced 2026-01-13 13:01:03 +00:00
feat: finish up new postgres setup
This commit is contained in:
parent
eb72e031d4
commit
33733de02c
4 changed files with 217 additions and 48 deletions
26
variables.tf
26
variables.tf
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue