From 215a8cf461bc5799476d8b6271a5f9a05ad319de Mon Sep 17 00:00:00 2001 From: admin Date: Wed, 28 Jan 2026 14:07:10 -0700 Subject: [PATCH] change token secrets in variables to be single lined --- terraform/variables.tf | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/terraform/variables.tf b/terraform/variables.tf index 3eb0fa5..bb763b5 100644 --- a/terraform/variables.tf +++ b/terraform/variables.tf @@ -1,6 +1,9 @@ variable "pve_endpoint" { type = string } variable "pve_token_id" { type = string } -variable "pve_token_secret" { type = string; sensitive = true } +variable "pve_token_secret" { + type = string + sensitive = true +} # Infrastructure Settings variable "target_node" {