create pve_vm module

This commit is contained in:
2025-03-23 20:26:37 +00:00
parent d24c18ebcb
commit fdaa406a94
9 changed files with 16 additions and 5 deletions

View File

@@ -0,0 +1,18 @@
terraform {
required_providers {
proxmox = {
source = "bpg/proxmox"
}
}
}
provider "proxmox" {
endpoint = var.proxmox_endpoint
api_token = var.proxmox_api_token
insecure = false
ssh {
agent = false
private_key = file("~/.ssh/id_ed25519")
username = "root"
}
}