From 484899f6f4b1eccee484d6888d8b81e07feeee16 Mon Sep 17 00:00:00 2001 From: Eugene Istrati Date: Wed, 23 Oct 2024 13:04:56 -0400 Subject: [PATCH] sensitive storage variables --- variables.tf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/variables.tf b/variables.tf index 60a5377..44b159f 100644 --- a/variables.tf +++ b/variables.tf @@ -41,18 +41,21 @@ variable "storage_user" { type = string default = null description = "Storage Username to Access S3 API Compliant Storage" + sensitive = true } variable "storage_pass" { type = string default = null description = "Storage Password to Access S3 API Compliant Storage" + sensitive = true } variable "storage_token" { type = string default = null description = "Storage Token to Access S3 API Compliant Storage (Optional)" + sensitive = true } variable "storage_secret_arn" {