From 20b4c61b3d9d29e108d410b171a84f0e297fa744 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Filipe=20Moura?= Date: Tue, 19 Jul 2022 21:14:04 -0300 Subject: [PATCH] fix: add sensitive true flag to output auth_string (#93) --- outputs.tf | 1 + 1 file changed, 1 insertion(+) diff --git a/outputs.tf b/outputs.tf index 3352e3e7..07f52710 100644 --- a/outputs.tf +++ b/outputs.tf @@ -47,4 +47,5 @@ output "persistence_iam_identity" { output "auth_string" { description = "AUTH String set on the instance. This field will only be populated if auth_enabled is true." value = google_redis_instance.default.auth_string + sensitive = true }