File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -58,11 +58,13 @@ jobs:
58
58
uses : https://github.com/opentofu/setup-opentofu@v1
59
59
60
60
- name : Run OpenTofu Init
61
- run : tofu init -chdir=./terraform
61
+ working-directory : ./terraform
62
+ run : tofu init
62
63
63
64
- name : Run OpenTofu Plan
64
65
id : plan
65
- run : tofu plan -no-color -chdir=./terraform
66
+ working-directory : ./terraform
67
+ run : tofu plan -no-color
66
68
67
69
- name : Display Plan Output
68
70
run : |
71
73
72
74
- name : Apply the Plan
73
75
if : success()
74
- run : tofu apply -auto-approve -chdir=./terraform
76
+ working-directory : ./terraform
77
+ run : tofu apply -auto-approve
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ resource "proxmox_virtual_environment_vm" "Kasm" {
36
36
# VM Disk Settings
37
37
disk {
38
38
datastore_id = " local-lvm"
39
- size = 152
39
+ size = 151
40
40
interface = " scsi0"
41
41
}
42
42
You can’t perform that action at this time.
0 commit comments