Implement bridges and fillout readme with current state

This commit is contained in:
bob
2026-04-10 23:35:27 -05:00
parent 940ecb3946
commit 836a57cd76
6 changed files with 92 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
provider "proxmox" {
endpoint = var.proxmox_endpoint
api_token = var.proxmox_api_token
# Set to true if using a self-signed certificate (common on home labs)
insecure = var.proxmox_insecure
}

View File

@@ -0,0 +1,10 @@
terraform {
required_version = ">= 1.0"
required_providers {
proxmox = {
source = "bpg/proxmox"
version = "~> 0.73"
}
}
}