forked from cloudposse/terraform-aws-iam-role
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
69 lines (56 loc) · 1.5 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
output "role_name" {
value = module.role.name
description = "The name of the created role"
}
output "role_id" {
value = module.role.id
description = "The stable and unique string identifying the role"
}
output "role_arn" {
value = module.role.arn
description = "The Amazon Resource Name (ARN) specifying the role"
}
output "role_policy" {
value = module.role.policy
description = "The Amazon Resource Name (ARN) specifying the role"
}
output "key_arn" {
value = module.kms_key.key_arn
description = "KMS key ARN"
}
output "key_id" {
value = module.kms_key.key_id
description = "KMS key ID"
}
output "key_alias_arn" {
value = module.kms_key.alias_arn
description = "KMS key alias ARN"
}
output "key_alias_name" {
value = module.kms_key.alias_name
description = "KMS key alias name"
}
output "bucket_domain_name" {
value = module.bucket.bucket_domain_name
description = "FQDN of bucket"
}
output "bucket_id" {
value = module.bucket.bucket_id
description = "Bucket Name (aka ID)"
}
output "bucket_arn" {
value = module.bucket.bucket_arn
description = "Bucket ARN"
}
output "user_name" {
value = module.bucket.user_name
description = "Normalized IAM user name"
}
output "user_arn" {
value = module.bucket.user_arn
description = "The ARN assigned by AWS for the user"
}
output "user_unique_id" {
value = module.bucket.user_unique_id
description = "The user unique ID assigned by AWS"
}