Agregando nueva configuración para instalar pihole

This commit is contained in:
2025-11-08 21:38:24 -03:00
parent 6abc71f90e
commit 056f0cdb1d
11 changed files with 2033 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
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" }