adc/terraform/bikeshed/vars.tf
josiah d80830f8d3 Initial terraform commit.
Create 2 different subfolders:
- jowj dot net owns / will own DNS for jowj.net and its subdomains
- Bikeshed owns my provisioning VMs against my proxmox cluster

env_creds.sh is just a simple way to export secrets from `pass` to my
local environment.
2023-07-28 09:59:41 -05:00

18 lines
390 B
HCL

variable "proxmox_host" {
default = "demiurge"
}
variable "template_name" {
default = "debian-template"
}
variable "PM_API_TOKEN_ID" {
description = "API Token ID for proxmox management."
type = string
sensitive = true
}
variable "PM_API_TOKEN_SECRET" {
description = "Secret for prooxmox management."
type = string
sensitive = true
}