We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb8cb5f commit 5533d6eCopy full SHA for 5533d6e
.forgejo/workflows/tofu.yml
@@ -58,11 +58,11 @@ jobs:
58
uses: https://github.com/opentofu/setup-opentofu@v1
59
60
- name: Run OpenTofu Init
61
- run: tofu init
+ run: tofu init -chdir=./terraform
62
63
- name: Run OpenTofu Plan
64
id: plan
65
- run: tofu plan -no-color
+ run: tofu plan -no-color -chdir=./terraform
66
67
- name: Display Plan Output
68
run: |
@@ -71,4 +71,4 @@ jobs:
71
72
- name: Apply the Plan
73
if: success()
74
- run: tofu apply -auto-approve
+ run: tofu apply -auto-approve -chdir=./terraform
terraform/kasm.tf
@@ -36,7 +36,7 @@ resource "proxmox_virtual_environment_vm" "Kasm" {
36
# VM Disk Settings
37
disk {
38
datastore_id = "local-lvm"
39
- size = 153
+ size = 152
40
interface = "scsi0"
41
}
42
0 commit comments