mirror of
https://github.com/apricote/home-cloud.git
synced 2026-01-13 13:01:03 +00:00
feat: deploy postgres server
This commit is contained in:
parent
fe3a5cee2e
commit
eb72e031d4
5 changed files with 79 additions and 2 deletions
10
variables.tf
10
variables.tf
|
|
@ -3,3 +3,13 @@ variable "listory_token" {
|
|||
type = string
|
||||
sensitive = true
|
||||
}
|
||||
|
||||
variable "postgres_databases" {
|
||||
description = "Postgres databases to create"
|
||||
type = list(object({
|
||||
id = string
|
||||
user = string
|
||||
password = string
|
||||
}))
|
||||
sensitive = true
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue