fix: use PM_API_TOKEN_ID/SECRET env vars directly
Some checks failed
Gitea Actions Demo / Terraform Plan (push) Failing after 13s

- Remove token from Terraform variables (provider reads from env)
- Update workflows to set PM_API_TOKEN_ID and PM_API_TOKEN_SECRET directly
- Provider now reads credentials from environment variables
This commit is contained in:
2026-02-27 20:36:44 +00:00
parent 4a123e0fb6
commit 9c1476b6bf
5 changed files with 15 additions and 29 deletions

View File

@@ -8,10 +8,8 @@ terraform {
}
provider "proxmox" {
pm_api_url = var.pm_api_url
pm_api_token_id = var.pm_api_token_id
pm_api_token_secret = var.pm_api_token_secret
pm_tls_insecure = true
pm_api_url = var.pm_api_url
pm_tls_insecure = true
}
resource "proxmox_vm_qemu" "alpacas" {