working and a bit modular

This commit is contained in:
jdn
2025-03-27 22:42:49 +01:00
commit 2df3f3636c
6 changed files with 214 additions and 0 deletions

18
tf_code/main.tf Normal file
View File

@@ -0,0 +1,18 @@
terraform {
required_providers {
proxmox = {
source = "bpg/proxmox"
version = "0.73.1"
}
}
}
provider "proxmox" {
# Configuration options
endpoint = var.PROXMOX_VE_ENDPOINT
api_token = var.PROXMOX_VE_API_TOKEN
}
output "unciel_eu_value" {
value = {for k,v in var.unciel_eu: k => v...}
}