20 lines
544 B
HCL
20 lines
544 B
HCL
variable "proxmox_endpoint" {}
|
|
variable "proxmox_user" {}
|
|
variable "proxmox_password" { sensitive = true }
|
|
variable "proxmox_node" { default = "pve" }
|
|
|
|
variable "proxmox_ssh_username" {}
|
|
variable "proxmox_ssh_privkey_path" {}
|
|
variable "proxmox_datastore" { default = "local" }
|
|
|
|
variable "vm_name" { default = "pihole" }
|
|
variable "vm_datastore" { default = "local-vm" }
|
|
variable "vm_address" {}
|
|
variable "vm_cidr" {}
|
|
variable "vm_gateway" {}
|
|
|
|
variable "ssh_pubkey_path" {}
|
|
variable "ssh_privkey_path" {}
|
|
|
|
variable "bridge" { default = "vmbr0" }
|