From d8e671048fbee45854e4885ca684eaa706274f4d Mon Sep 17 00:00:00 2001 From: DeveloperDurp Date: Sat, 29 Jun 2024 09:28:52 -0500 Subject: [PATCH] update --- terraform/main.tf | 1 - terraform/variables.tf | 37 ------------------------------------- 2 files changed, 38 deletions(-) diff --git a/terraform/main.tf b/terraform/main.tf index e9c16bb..8898777 100644 --- a/terraform/main.tf +++ b/terraform/main.tf @@ -60,7 +60,6 @@ locals { } } - resource "proxmox_vm_qemu" "k3master" { count = local.config.k3master.count ciuser = "administrator" diff --git a/terraform/variables.tf b/terraform/variables.tf index b23c593..2044661 100644 --- a/terraform/variables.tf +++ b/terraform/variables.tf @@ -7,11 +7,6 @@ variable "pm_api_url" { type = string } -variable "dnsserver" { - description = "DNS provider" - type = string -} - variable "pm_password" { description = "Passowrd to Proxmox provider" type = string @@ -23,38 +18,6 @@ variable "pm_user" { default = "root@pam" } -variable "k3master" { - description = "Defaults of master nodes in K3S" - type = object({ - count = number - name = list(string) - cores = number - memory = number - drive = string - storage = string - template = list(string) - node = list(string) - ip = list(number) - vlan = number - }) -} - -variable "k3server" { - description = "Defaults of master nodes in K3S" - type = object({ - count = number - name = list(string) - cores = number - memory = number - drive = string - storage = string - template = list(string) - node = list(string) - ip = list(number) - vlan = number - }) -} - variable "environment" { description = "environment of the deployment" type = string