This commit is contained in:
parent
fb8cb5ff2b
commit
5533d6e58e
2 changed files with 4 additions and 4 deletions
|
@ -58,11 +58,11 @@ jobs:
|
||||||
uses: https://github.com/opentofu/setup-opentofu@v1
|
uses: https://github.com/opentofu/setup-opentofu@v1
|
||||||
|
|
||||||
- name: Run OpenTofu Init
|
- name: Run OpenTofu Init
|
||||||
run: tofu init
|
run: tofu init -chdir=./terraform
|
||||||
|
|
||||||
- name: Run OpenTofu Plan
|
- name: Run OpenTofu Plan
|
||||||
id: plan
|
id: plan
|
||||||
run: tofu plan -no-color
|
run: tofu plan -no-color -chdir=./terraform
|
||||||
|
|
||||||
- name: Display Plan Output
|
- name: Display Plan Output
|
||||||
run: |
|
run: |
|
||||||
|
@ -71,4 +71,4 @@ jobs:
|
||||||
|
|
||||||
- name: Apply the Plan
|
- name: Apply the Plan
|
||||||
if: success()
|
if: success()
|
||||||
run: tofu apply -auto-approve
|
run: tofu apply -auto-approve -chdir=./terraform
|
||||||
|
|
|
@ -36,7 +36,7 @@ resource "proxmox_virtual_environment_vm" "Kasm" {
|
||||||
# VM Disk Settings
|
# VM Disk Settings
|
||||||
disk {
|
disk {
|
||||||
datastore_id = "local-lvm"
|
datastore_id = "local-lvm"
|
||||||
size = 153
|
size = 152
|
||||||
interface = "scsi0"
|
interface = "scsi0"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue