adc/terraform/bikeshed/vars.tf
josiah 869a1272a6 Use a new template for PM, create provider, high-sea.
- New template had to be based on a CIFS file system to be
referencable across hosts

- high-sea is new VM for *arr hosting.
2023-09-24 11:22:21 -05:00

29 lines
584 B
HCL

variable "proxmox_host" {
default = "demiurge"
}
variable "template_name" {
default = "debian-template-cifs"
}
variable "high-sea-host" {
default = "seraph"
}
variable "PM_API_TOKEN_ID" {
description = "API Token ID for proxmox management."
type = string
sensitive = true
}
variable "PM_API_TOKEN_SECRET" {
description = "Secret for proxmox management."
type = string
sensitive = true
}
variable "DO_PAT" {
description = "Personal access token for managing DO infra."
type = string
sensitive = true
}