test
Some checks failed
OpenTofu Automation / deploy (push) Failing after 8s

This commit is contained in:
Matt Reeves 2024-10-12 22:16:15 -04:00
parent fb8cb5ff2b
commit 5533d6e58e
2 changed files with 4 additions and 4 deletions

View file

@ -58,11 +58,11 @@ jobs:
uses: https://github.com/opentofu/setup-opentofu@v1
- name: Run OpenTofu Init
run: tofu init
run: tofu init -chdir=./terraform
- name: Run OpenTofu Plan
id: plan
run: tofu plan -no-color
run: tofu plan -no-color -chdir=./terraform
- name: Display Plan Output
run: |
@ -71,4 +71,4 @@ jobs:
- name: Apply the Plan
if: success()
run: tofu apply -auto-approve
run: tofu apply -auto-approve -chdir=./terraform

View file

@ -36,7 +36,7 @@ resource "proxmox_virtual_environment_vm" "Kasm" {
# VM Disk Settings
disk {
datastore_id = "local-lvm"
size = 153
size = 152
interface = "scsi0"
}