forked from cloudposse/terraform-aws-iam-system-user
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
31 lines (26 loc) · 972 Bytes
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
output "user_name" {
value = join("", aws_iam_user.default.*.name)
description = "Normalized IAM user name"
}
output "user_arn" {
value = join("", aws_iam_user.default.*.arn)
description = "The ARN assigned by AWS for this user"
}
output "user_unique_id" {
value = join("", aws_iam_user.default.*.unique_id)
description = "The unique ID assigned by AWS"
}
output "access_key_id" {
value = join("", aws_iam_access_key.default.*.id)
description = "The access key ID"
}
output "secret_access_key" {
sensitive = true
value = join("", aws_iam_access_key.default.*.secret)
description = "The secret access key. This will be written to the state file in plain-text"
}
output "ses_smtp_password_v4" {
sensitive = true
value = join("", aws_iam_access_key.default.*.ses_smtp_password_v4)
description = "The secret access key converted into an SES SMTP password by applying AWS's Sigv4 conversion algorithm"
}