From 23e9f004549bcba65473aad5da3f2a620cd475d7 Mon Sep 17 00:00:00 2001 From: DeveloperDurp Date: Sat, 5 Nov 2022 13:12:59 +0000 Subject: [PATCH] Update terraform/variables.tf --- terraform/variables.tf | 58 +++++++++++++++++++++--------------------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/terraform/variables.tf b/terraform/variables.tf index a0156e3..ed083cd 100644 --- a/terraform/variables.tf +++ b/terraform/variables.tf @@ -1,55 +1,55 @@ variable "pm_api_url" { - description = "API URL to Proxmox provider" - type = string + description = "API URL to Proxmox provider" + type = string } variable "dnsserver" { - description = "DNS provider" - type = string + description = "DNS provider" + type = string } variable "sshkeys" { - description = "Public SSH key to inject into CloudInit" - type = string + description = "Public SSH key to inject into CloudInit" + type = string } variable "pm_password" { - description = "Passowrd to Proxmox provider" - type = string + description = "Passowrd to Proxmox provider" + type = string } variable "pm_user" { - description = "UIsername to Proxmox provider" - type = string - default = "root@pam" + description = "UIsername to Proxmox provider" + type = string + 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 = string - node = string - ip = list(number) + count = number + name = list(string) + cores = number + memory = number + drive = string + storage = string + template = string + node = string + ip = list(number) }) } variable "k3server" { description = "Defaults of worker nodes in K3S" type = object({ - count = number - name = list(string) - cores = number - memory = number - drive = string - storage = string - template = string - node = string - ip = list(number) + count = number + name = list(string) + cores = number + memory = number + drive = string + storage = string + template = string + node = string + ip = list(number) }) }