From 86a9887047d626dd3b4d61460b09f6135089d2ef Mon Sep 17 00:00:00 2001 From: patrick hermann <47567770+patrick-hermann-sva@users.noreply.github.com> Date: Mon, 22 Jan 2024 12:13:38 +0100 Subject: [PATCH] Update variables.tf --- variables.tf | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/variables.tf b/variables.tf index 44b8a2f..ef383ac 100644 --- a/variables.tf +++ b/variables.tf @@ -165,3 +165,27 @@ variable "vm_macaddr" { type = string description = "Mac address of desired vm" } + +variable "pve_api_url" { + default = false + type = string + description = "url of proxmox api" +} + +variable "pve_api_user" { + default = false + type = string + description = "username of proxmox api user" +} + +variable "pve_api_password" { + default = false + type = string + description = "password of proxmox api user" +} + +variable "pve_api_tls_verify" { + default = true + type = bool + description = "proxmox API disable check if cert is valid" +}