18 lines
309 B
Terraform
18 lines
309 B
Terraform
|
variable "pm_user" {
|
||
|
default = "terraform@pve"
|
||
|
}
|
||
|
|
||
|
variable "vmid" {
|
||
|
default = 400
|
||
|
description = "Starting ID for the Prox VMs"
|
||
|
}
|
||
|
|
||
|
variable "proxmox_node05_password" {
|
||
|
type = string
|
||
|
description = "prox05 pve pass"
|
||
|
}
|
||
|
|
||
|
variable "vultr_apikey" {
|
||
|
type = string
|
||
|
description = "vultr cloud api key"
|
||
|
}
|