Skip to content

Commit

Permalink
Merge pull request #12 from rj175/additional-output
Browse files Browse the repository at this point in the history
feat(outputs.tf): added additional output
  • Loading branch information
Richard Annand authored Nov 27, 2020
2 parents f2743c7 + 5d38266 commit a279c7c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ output "iam_user" {
description = "The IAM user created."
}

output "iam_user_access_key_id" {
value = aws_iam_access_key.iam_access_key.id
description = "The IAM access key id."
}

output "iam_user_encrypted_secret" {
value = aws_iam_access_key.iam_access_key.encrypted_secret
description = "Encrypted Secret for IAM backup user"
Expand Down

0 comments on commit a279c7c

Please sign in to comment.