30 lines
No EOL
477 B
HCL
30 lines
No EOL
477 B
HCL
variable "pve_endpoint" {
|
|
type = string
|
|
}
|
|
|
|
variable "pve_token_id" {
|
|
type = string
|
|
}
|
|
|
|
variable "pve_token_secret" {
|
|
type = string
|
|
sensitive = true
|
|
}
|
|
|
|
variable "lxc_inventory" {
|
|
type = map(object({
|
|
node = string
|
|
hostname = string
|
|
disk_size = string
|
|
cores = number
|
|
memory = number
|
|
vlan = number
|
|
ip = string
|
|
gw = string
|
|
}))
|
|
}
|
|
|
|
variable "lxc_root_password" {
|
|
type = string
|
|
sensitive = true
|
|
} |