From 237d47f13aaf21bf31ef4007642a961ae7bba6d8 Mon Sep 17 00:00:00 2001
From: Matt Reeves <admin@mafyuh.io>
Date: Sat, 12 Oct 2024 22:21:52 -0400
Subject: [PATCH] test

---
 .forgejo/workflows/tofu.yml | 9 ++++++---
 terraform/kasm.tf           | 2 +-
 2 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/.forgejo/workflows/tofu.yml b/.forgejo/workflows/tofu.yml
index 5e09c038..9416ae9e 100644
--- a/.forgejo/workflows/tofu.yml
+++ b/.forgejo/workflows/tofu.yml
@@ -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
diff --git a/terraform/kasm.tf b/terraform/kasm.tf
index 22ae455c..f48bc29f 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         = 152
+    size         = 151
     interface    = "scsi0"
   }