-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
40 lines (33 loc) · 1.02 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
output "s3_bucket_id" {
description = "The bucket name"
value = module.bucket.s3_bucket_id
}
output "s3_bucket_arn" {
description = "The bucket arn"
value = module.bucket.s3_bucket_arn
}
output "s3_bucket_website_endpoint" {
description = "The website endpoint associated to created s3 bucket"
value = module.bucket.s3_bucket_website_endpoint
}
output "bucket_regional_domain_name" {
description = "The bucket regional domain name"
value = module.bucket.s3_bucket_bucket_regional_domain_name
}
output "iam_user_name" {
description = "The user's name"
value = module.iam_user.iam_user_name
}
output "iam_user_arn" {
description = "The ARN assigned by AWS for this user"
value = module.iam_user.iam_user_arn
}
output "iam_access_key_id" {
description = "The access key ID"
value = module.iam_user.iam_access_key_id
}
output "iam_access_key_secret" {
description = "The access key secret"
value = module.iam_user.iam_access_key_secret
sensitive = true
}