File tree 2 files changed +33
-1
lines changed
2 files changed +33
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Terraform Apply
2
+
3
+ on :
4
+ push :
5
+ paths :
6
+ - ' terraform/**'
7
+
8
+ jobs :
9
+ terraform :
10
+ runs-on : docker
11
+ steps :
12
+ - name : Checkout code
13
+ uses : actions/checkout@v4
14
+
15
+ - name : Download OpenTofu Installer
16
+ run : |
17
+ curl --proto '=https' --tlsv1.2 -fsSL https://get.opentofu.org/install-opentofu.sh -o install-opentofu.sh
18
+ chmod +x install-opentofu.sh
19
+
20
+ - name : Inspect and Install OpenTofu
21
+ run : ./install-opentofu.sh --install-method deb
22
+
23
+ - name : Clean up Installer Script
24
+ run : rm -f install-opentofu.sh
25
+
26
+ - name : Initialize OpenTofu
27
+ run : opentofu init
28
+ working-directory : ./terraform
29
+
30
+ - name : Apply OpenTofu
31
+ run : opentofu apply -auto-approve
32
+ working-directory : ./terraform
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 = 100
39
+ size = 150
40
40
interface = " scsi0"
41
41
}
42
42
You can’t perform that action at this time.
0 commit comments