From e0d3be81dac87c6e8476069901c57729a67bd00c Mon Sep 17 00:00:00 2001 From: Juanadelacuesta <8647634+Juanadelacuesta@users.noreply.github.com> Date: Wed, 19 Mar 2025 19:53:32 +0100 Subject: [PATCH] fix: declare license inputs as sensitive variables --- enos/enos-vars.hcl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/enos/enos-vars.hcl b/enos/enos-vars.hcl index 4e5118552..a7cb49f13 100644 --- a/enos/enos-vars.hcl +++ b/enos/enos-vars.hcl @@ -58,12 +58,14 @@ variable "download_binary_path" { variable "nomad_license" { type = string description = "If nomad_license is set, deploy a license" + sensitive = true default = "" } variable "consul_license" { type = string description = "If consul_license is set, deploy a license" + sensitive = true default = "" }