feat: deploy postgres server

This commit is contained in:
Julian Tölle 2023-09-23 12:27:57 +02:00
parent fe3a5cee2e
commit eb72e031d4
5 changed files with 79 additions and 2 deletions

View file

@ -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
}