Skip to content

Commit 5cc5e08

Browse files
authored
fix: sensitive output safer mysql (#401)
1 parent 243c1c5 commit 5cc5e08

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

modules/safer_mysql/outputs.tf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,14 +81,17 @@ output "instance_ip_address" {
8181
output "primary" {
8282
value = module.safer_mysql.primary
8383
description = "The `google_sql_database_instance` resource representing the primary instance"
84+
sensitive = true
8485
}
8586

8687
output "replicas" {
8788
value = module.safer_mysql.replicas
8889
description = "A list of `google_sql_database_instance` resources representing the replicas"
90+
sensitive = true
8991
}
9092

9193
output "instances" {
9294
value = module.safer_mysql.instances
9395
description = "A list of all `google_sql_database_instance` resources we've created"
96+
sensitive = true
9497
}

0 commit comments

Comments
 (0)