Skip to content

Commit b6293e3

Browse files
authored
fix: added sensitive flag to input variables (#177)
1 parent 2e1d9bc commit b6293e3

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

modules/eso-secretstore/variables.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ variable "sstore_secret_apikey" {
4444
description = "APIkey to be stored into var.sstore_secret_name secret to authenticate with Secrets Manager instance"
4545
type = string
4646
default = null
47+
sensitive = true
4748
validation {
4849
condition = var.eso_authentication == "api_key" ? var.sstore_secret_apikey != null : true
4950
error_message = "API Key authentication is enabled and scope for store is cluster, therefore sstore_secret_apikey must be provided."

solutions/fully-configurable/variables.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ variable "secrets_manager_ibmcloud_api_key" {
1212
type = string
1313
description = "API key to authenticate on Secrets Manager instance. If null the ibmcloud_api_key will be used."
1414
default = null
15+
sensitive = true
1516
}
1617

1718
variable "provider_visibility" {

0 commit comments

Comments
 (0)