This repository has been archived by the owner on Jan 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
40 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,4 @@ | |
# Module directory | ||
.terraform/ | ||
.idea | ||
*.iml | ||
*.iml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,24 @@ | ||
output "user_name" { | ||
value = "${module.chamber_user.user_name}" | ||
value = "${module.chamber_user.user_name}" | ||
description = "Normalized IAM user name" | ||
} | ||
|
||
output "user_arn" { | ||
value = "${module.chamber_user.user_arn}" | ||
value = "${module.chamber_user.user_arn}" | ||
description = "The ARN assigned by AWS for the user" | ||
} | ||
|
||
output "user_unique_id" { | ||
value = "${module.chamber_user.user_unique_id}" | ||
value = "${module.chamber_user.user_unique_id}" | ||
description = "The user unique ID assigned by AWS" | ||
} | ||
|
||
output "access_key_id" { | ||
value = "${module.chamber_user.access_key_id}" | ||
value = "${module.chamber_user.access_key_id}" | ||
description = "The access key ID" | ||
} | ||
|
||
output "secret_access_key" { | ||
value = "${module.chamber_user.secret_access_key}" | ||
value = "${module.chamber_user.secret_access_key}" | ||
description = "The secret access key. This will be written to the state file in plain-text" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters