Update .gitea/workflows/proxmox-tf.yaml
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 34s
ProxMox Terraform / Terraform-Proxmox (push) Failing after 32s

This commit is contained in:
Martin Cholewa 2025-01-24 11:41:13 +01:00
parent a6e734873d
commit c854b97367

View File

@ -12,3 +12,15 @@ jobs:
uses: hashicorp/setup-terraform@v1 uses: hashicorp/setup-terraform@v1
with: with:
terraform_version: 1.0.0 terraform_version: 1.0.0
- name: Terraform Init
run: terraform init
- name: Terraform Apply
run: terraform apply -auto-approve
- name: Install Proxmox CLI
run: |
sudo apt-get update
sudo apt-get install -y jq curl
curl -L https://github.com/Telmate/proxmox-api-go/releases/download/v1.0.0/proxmox-api-go_1.0.0_linux_amd64.tar.gz | tar xz -C /usr/local/bin