Split project

This commit is contained in:
2026-09-08 00:15:03 -04:00
parent 33dc172296
commit 02516f403a
33 changed files with 223 additions and 44 deletions
+28
View File
@@ -0,0 +1,28 @@
provider "proxmox" {
endpoint = "https://hvc01.balsillie.house:443/"
insecure = false
# api_token = # Takes value from PROXMOX_VE_API_TOKEN env var
random_vm_ids = true
random_vm_id_start = 10000
random_vm_id_end = 99999
ssh {
username = "ladmin"
# SSH Private Key provided by env var PROXMOX_VE_SSH_PRIVATE_KEY
agent = false
node_address_source = "dns"
node {
name = "hv01"
address = "hv01.balsillie.house"
port = 22
}
node {
name = "hv02"
address = "hv02.balsillie.house"
port = 22
}
}
}
provider "dns" {}
provider "http" {}