added e2e opentofu files
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2026-02-27 19:41:00 +01:00
parent d7b9f3d70b
commit 417d85488d
4 changed files with 115 additions and 0 deletions

12
tofu/e2e/provider.tf Normal file
View File

@@ -0,0 +1,12 @@
provider "proxmox" {
endpoint = "https://192.168.178.2:8006/"
username = "root@pam"
password = var.proxmox_password
insecure = true
ssh {
agent = false
username = "root"
password = var.proxmox_password
}
}