You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
adc/terraform/bikeshed/vars.tf

18 lines
390 B

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
}