Update 2 files

- /terraform/main.tf
- /terraform/variables.tf
This commit is contained in:
2023-08-06 17:36:15 +00:00
parent da14f96118
commit 948e881e83
2 changed files with 2 additions and 2 deletions

View File

@@ -81,7 +81,7 @@ resource "proxmox_vm_qemu" "k3server" {
]
}
#Cloud Init Settings
ipconfig0 = "ip=192.168.20.${var.ipprefix}${var.k3server[count.index]+1}/24,gw=192.168.20.1"
ipconfig0 = "ip=192.168.20.${var.ipprefix}${var.k3server[count.index] + 1}/24,gw=192.168.20.1"
searchdomain = "durp.loc"
nameserver = var.dnsserver
sshkeys = var.sshkeys

View File

@@ -36,7 +36,7 @@ variable "environment" {
}
variable "ipprefix" {
type = number
type = number
}
variable "k3master" {