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 {
ip_config {
ipv4 {
address = "dhcp"
address = var.kasm_ip
gateway = var.vlan_gateway
}
}

View file

@ -44,4 +44,8 @@ variable "init_username" {
variable "init_password" {
type = string
}
variable "kasm_ip" {
type = string
}