add first terraform project with bpg-proxmox (not working)

This commit is contained in:
2025-01-27 14:34:42 +00:00
parent 5ac27af6cb
commit 52c5f36e86
4 changed files with 95 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
terraform {
required_providers {
proxmox = {
source = "bpg/proxmox"
}
}
}
provider "proxmox" {
endpoint = var.proxmox_endpoint
api_token = var.proxmox_api_token
insecure = false
ssh {
agent = true
username = "root"
}
}