Skip to content

Commit

Permalink
fix: sensitive output safer mysql (#401)
Browse files Browse the repository at this point in the history
  • Loading branch information
rs1986x committed Dec 29, 2022
1 parent 243c1c5 commit 5cc5e08
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions modules/safer_mysql/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -81,14 +81,17 @@ output "instance_ip_address" {
output "primary" {
value = module.safer_mysql.primary
description = "The `google_sql_database_instance` resource representing the primary instance"
sensitive = true
}

output "replicas" {
value = module.safer_mysql.replicas
description = "A list of `google_sql_database_instance` resources representing the replicas"
sensitive = true
}

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

0 comments on commit 5cc5e08

Please sign in to comment.