aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorclyhtsuriva <aimeric@adjutor.xyz>2025-03-03 20:05:06 +0100
committerclyhtsuriva <aimeric@adjutor.xyz>2025-03-03 20:05:06 +0100
commitcbe2665fbb9130ec3bd736f4428ea02966b125f4 (patch)
tree6c31152c2399e33953d673805f7bcf40991da291
parentb95a4b78b4a4ede6190e8de3f024296894c07f8f (diff)
tofu: update bpg/proxmox to 0.73.0 & clean vars
-rw-r--r--opentofu/variables.tf23
-rw-r--r--opentofu/versions.tf2
2 files changed, 1 insertions, 24 deletions
diff --git a/opentofu/variables.tf b/opentofu/variables.tf
index 234963d..30f20ec 100644
--- a/opentofu/variables.tf
+++ b/opentofu/variables.tf
@@ -12,20 +12,10 @@ variable "proxmox_node" {
type = string
}
-variable "debian_server_bookworm_packer_image_name" {
- description = "Name of the Packer image to clone"
- type = string
-}
-
variable "debian_server_bookworm_packer_image_id" {
type = string
}
-variable "ubuntu_server_noble_packer_image_name" {
- description = "Name of the Packer image to clone"
- type = string
-}
-
variable "ubuntu_server_noble_packer_image_id" {
type = string
}
@@ -55,16 +45,3 @@ variable "k8s_ansible_playbook_path" {
description = "Path to the Ansible playbook for k8s installation"
type = string
}
-
-variable "k8s_worker_vm_name_prefix" {
- description = "VM name prefix"
- default = "k8s-worker"
- type = string
-}
-
-variable "k8s_worker_vm_count" {
- description = "Number of servers"
- default = 2
- type = string
-}
-
diff --git a/opentofu/versions.tf b/opentofu/versions.tf
index a872a44..96542de 100644
--- a/opentofu/versions.tf
+++ b/opentofu/versions.tf
@@ -4,7 +4,7 @@ terraform {
required_providers {
proxmox = {
source = "bpg/proxmox"
- version = "0.72.0"
+ version = "0.73.0"
}
local = {
source = "hashicorp/local"