initial commit

This commit is contained in:
2026-06-14 14:21:09 +07:00
commit 054835e2a7
17 changed files with 771 additions and 0 deletions

24
terraform/variables.tf Normal file
View File

@@ -0,0 +1,24 @@
variable "proxmox_endpoint" {
description = "Proxmox API endpoint URL"
}
variable "proxmox_api_token" {
description = "Proxmox API token (user@realm!tokenid=secret)"
sensitive = true
}
variable "proxmox_node" {
default = "proxmox03"
}
variable "proxmox_pool" {
default = "IaC"
}
variable "gateway" {
default = "192.168.1.1"
}
variable "dns_server" {
default = "192.168.1.1"
}