mirror of
https://github.com/outbackdingo/terraform-talos.git
synced 2026-01-27 10:20:46 +00:00
chore: update kube version
This commit is contained in:
@@ -156,7 +156,7 @@ resource "proxmox_virtual_environment_vm" "db" {
|
||||
}
|
||||
}
|
||||
|
||||
datastore_id = "local"
|
||||
datastore_id = lookup(try(var.nodes[each.value.zone], {}), "storage", "local")
|
||||
meta_data_file_id = proxmox_virtual_environment_file.db_metadata[each.key].id
|
||||
user_data_file_id = proxmox_virtual_environment_file.db_machineconfig[each.key].id
|
||||
}
|
||||
|
||||
@@ -177,7 +177,7 @@ resource "proxmox_virtual_environment_vm" "web" {
|
||||
}
|
||||
}
|
||||
|
||||
datastore_id = "local"
|
||||
datastore_id = lookup(try(var.nodes[each.value.zone], {}), "storage", "local")
|
||||
meta_data_file_id = proxmox_virtual_environment_file.web_metadata[each.key].id
|
||||
user_data_file_id = proxmox_virtual_environment_file.web_machineconfig[each.key].id
|
||||
}
|
||||
|
||||
@@ -155,7 +155,7 @@ resource "proxmox_virtual_environment_vm" "worker" {
|
||||
}
|
||||
}
|
||||
|
||||
datastore_id = "local"
|
||||
datastore_id = lookup(try(var.nodes[each.value.zone], {}), "storage", "local")
|
||||
meta_data_file_id = proxmox_virtual_environment_file.worker_metadata[each.key].id
|
||||
user_data_file_id = proxmox_virtual_environment_file.worker_machineconfig[each.key].id
|
||||
}
|
||||
|
||||
@@ -86,7 +86,7 @@ variable "instances" {
|
||||
type = map(any)
|
||||
default = {
|
||||
"all" = {
|
||||
version = "v1.33.5"
|
||||
version = "v1.34.1"
|
||||
},
|
||||
"hvm-1" = {
|
||||
enabled = false,
|
||||
|
||||
Reference in New Issue
Block a user