Skip to content

Commit

Permalink
Merge pull request #45 from ministryofjustice/sensitive-var
Browse files Browse the repository at this point in the history
Set outputs to sensitive for sqs module
  • Loading branch information
sj-williams authored Mar 30, 2023
2 parents 16e47ea + 0d6903b commit 99e7836
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 99e7836

Please sign in to comment.