Skip to content

Commit

Permalink
Merge pull request #67 from ministryofjustice/sensitive-var
Browse files Browse the repository at this point in the history
Set outputs to sensitive for s3 module
  • Loading branch information
sj-williams authored Mar 30, 2023
2 parents 690e374 + bcc9611 commit 3e36a9e
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
@@ -1,11 +1,13 @@
output "access_key_id" {
description = "Access key id for s3 account"
value = aws_iam_access_key.user.id
sensitive = true
}

output "secret_access_key" {
description = "Secret key for s3 account"
value = aws_iam_access_key.user.secret
sensitive = true
}

output "bucket_arn" {
Expand Down

0 comments on commit 3e36a9e

Please sign in to comment.