Skip to content

Commit 5533d6e

Browse files
committedOct 13, 2024
test
1 parent fb8cb5f commit 5533d6e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎.forgejo/workflows/tofu.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,11 @@ jobs:
5858
uses: https://github.com/opentofu/setup-opentofu@v1
5959

6060
- name: Run OpenTofu Init
61-
run: tofu init
61+
run: tofu init -chdir=./terraform
6262

6363
- name: Run OpenTofu Plan
6464
id: plan
65-
run: tofu plan -no-color
65+
run: tofu plan -no-color -chdir=./terraform
6666

6767
- name: Display Plan Output
6868
run: |
@@ -71,4 +71,4 @@ jobs:
7171
7272
- name: Apply the Plan
7373
if: success()
74-
run: tofu apply -auto-approve
74+
run: tofu apply -auto-approve -chdir=./terraform

‎terraform/kasm.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ resource "proxmox_virtual_environment_vm" "Kasm" {
3636
# VM Disk Settings
3737
disk {
3838
datastore_id = "local-lvm"
39-
size = 153
39+
size = 152
4040
interface = "scsi0"
4141
}
4242

0 commit comments

Comments
 (0)
Please sign in to comment.