diff --git a/.forgejo/workflows/tofu.yml b/.forgejo/workflows/tofu.yml index fd2d2e3..5e09c03 100644 --- a/.forgejo/workflows/tofu.yml +++ b/.forgejo/workflows/tofu.yml @@ -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 diff --git a/terraform/kasm.tf b/terraform/kasm.tf index e63bf57..22ae455 100644 --- a/terraform/kasm.tf +++ b/terraform/kasm.tf @@ -36,7 +36,7 @@ resource "proxmox_virtual_environment_vm" "Kasm" { # VM Disk Settings disk { datastore_id = "local-lvm" - size = 153 + size = 152 interface = "scsi0" }