This commit is contained in:
parent
5533d6e58e
commit
237d47f13a
2 changed files with 7 additions and 4 deletions
|
@ -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
|
||||
|
|
|
@ -36,7 +36,7 @@ resource "proxmox_virtual_environment_vm" "Kasm" {
|
|||
# VM Disk Settings
|
||||
disk {
|
||||
datastore_id = "local-lvm"
|
||||
size = 152
|
||||
size = 151
|
||||
interface = "scsi0"
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue