probably should change the subnet now

This commit is contained in:
Matt Reeves 2024-06-03 00:12:06 -04:00
parent 6d79ce17fd
commit 73c8c6c492
2 changed files with 11 additions and 2 deletions

View file

@ -46,8 +46,8 @@ resource "proxmox_virtual_environment_vm" "Arrbuntu" {
initialization {
ip_config {
ipv4 {
address = "10.69.69.100/24"
gateway = "10.69.69.1"
address = var.arrbuntu_ip_address
gateway = var.arrbuntu_gateway
}
}
@ -61,4 +61,5 @@ resource "proxmox_virtual_environment_vm" "Arrbuntu" {
initialization[0].user_account[0].username,
]
}
}

View file

@ -21,4 +21,12 @@ variable "virtual_environment_endpoint" {
variable "virtual_environment_api" {
type = string
}
variable "arrbuntu_ip_address" {
type = string
}
variable "arrbuntu_gateway" {
type = string
}