feat(terraform): add Proxmox VM and Unifi DHCP modules (Phase 2)

This commit is contained in:
2026-02-27 19:12:25 -06:00
parent b33bd5f252
commit 7e0b0a859b
10 changed files with 321 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
terraform {
required_version = ">= 1.5.0"
required_providers {
unifi = {
source = "paultyng/unifi"
version = ">= 0.41.0"
}
}
}
provider "unifi" {
username = var.unifi_username
password = var.unifi_password
api_url = var.unifi_api_url
# Set to true if using a self-signed certificate
allow_insecure = true
}