change token secrets in variables to be single lined

This commit is contained in:
admin 2026-01-28 14:07:10 -07:00
parent 0603f8fd9f
commit 215a8cf461

View file

@ -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" {