Skip to content

Commit f8575ef

Browse files
committedAug 1, 2024
fixing kasm
1 parent 94ad15a commit f8575ef

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed
 

‎terraform/kasm.tf

+2-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ resource "proxmox_virtual_environment_vm" "Kasm" {
4444
initialization {
4545
ip_config {
4646
ipv4 {
47-
address = "dhcp"
47+
address = var.kasm_ip
48+
gateway = var.vlan_gateway
4849
}
4950
}
5051

‎terraform/vars.tf

+4
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,8 @@ variable "init_username" {
4444

4545
variable "init_password" {
4646
type = string
47+
}
48+
49+
variable "kasm_ip" {
50+
type = string
4751
}

0 commit comments

Comments
 (0)
Please sign in to comment.