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

This commit is contained in:
Matt Reeves 2024-10-12 22:21:52 -04:00
parent 5533d6e58e
commit 237d47f13a
2 changed files with 7 additions and 4 deletions

View file

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

View file

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