fixing kasm

This commit is contained in:
Matt Reeves 2024-07-31 21:23:37 -04:00
parent 94ad15a83d
commit f8575efb8c
2 changed files with 6 additions and 1 deletions

View file

@ -44,7 +44,8 @@ resource "proxmox_virtual_environment_vm" "Kasm" {
initialization { initialization {
ip_config { ip_config {
ipv4 { ipv4 {
address = "dhcp" address = var.kasm_ip
gateway = var.vlan_gateway
} }
} }

View file

@ -45,3 +45,7 @@ variable "init_username" {
variable "init_password" { variable "init_password" {
type = string type = string
} }
variable "kasm_ip" {
type = string
}