add terransible project

This commit is contained in:
2025-03-26 21:47:02 +00:00
parent 8c793d3d59
commit de457e8e38
5 changed files with 71 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
terraform {
required_providers {
proxmox = {
source = "bpg/proxmox"
}
ansible = {
source = "ansible/ansible"
}
}
}
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"
}
}