infrastructure/postgresql.tjo.cloud/terraform/variables.tf
Tine 4cbdce717d
Some checks failed
/ lint (push) Failing after 57s
feat(postgresql.tjo.cloud): prepare new deployment
2025-03-10 22:16:07 +01:00

39 lines
606 B
HCL

variable "nodes" {
type = map(object({
host = string
cores = optional(number, 1)
memory = optional(number, 512)
iso_storage = string
boot_storage = string
boot_size = optional(number, 8)
data_storage = string
data_size = optional(number, 64)
}))
}
variable "ssh_keys" {
type = map(string)
}
variable "proxmox_token" {
type = string
sensitive = true
}
variable "authentik_token" {
type = string
sensitive = true
}
variable "dnsimple_token" {
type = string
sensitive = true
}
variable "dnsimple_account_id" {
type = string
}