forked from cloudposse/terraform-aws-iam-s3-user
-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
36 lines (30 loc) · 1 KB
/
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
32
33
34
35
36
output "user_name" {
value = module.s3_user.user_name
description = "Normalized IAM user name"
}
output "user_arn" {
value = module.s3_user.user_arn
description = "The ARN assigned by AWS for the user"
}
output "user_unique_id" {
value = module.s3_user.user_unique_id
description = "The user unique ID assigned by AWS"
}
output "access_key_id" {
sensitive = true
value = module.s3_user.access_key_id
description = "Access Key ID"
}
output "secret_access_key" {
sensitive = true
value = module.s3_user.secret_access_key
description = "Secret Access Key. This will be written to the state file in plain-text"
}
output "access_key_id_ssm_path" {
value = module.s3_user.access_key_id_ssm_path
description = "The SSM Path under which the S3 User's access key ID is stored"
}
output "secret_access_key_ssm_path" {
value = module.s3_user.secret_access_key_ssm_path
description = "The SSM Path under which the S3 User's secret access key is stored"
}