Skip to content

Commit

Permalink
Set outputs to sensitive for sqs module
Browse files Browse the repository at this point in the history
  • Loading branch information
sj-williams committed Mar 21, 2023
1 parent 16e47ea commit 0d6903b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,13 @@ output "user_name" {
output "access_key_id" {
description = "Access key id for the credentials"
value = join("", aws_iam_access_key.key.*.id)
sensitive = true
}

output "secret_access_key" {
description = "Secret for the new credentials"
value = join("", aws_iam_access_key.key.*.secret)
sensitive = true
}

output "sqs_id" {
Expand Down

0 comments on commit 0d6903b

Please sign in to comment.