forked from newscorp-ghfb/NewsKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutputs.tf
More file actions
37 lines (28 loc) · 727 Bytes
/
outputs.tf
File metadata and controls
37 lines (28 loc) · 727 Bytes
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
data "aws_caller_identity" "current" {}
output "caller_user" {
value = data.aws_caller_identity.current.user_id
}
output "environment" {
value = "${var.environment}"
}
output "docs_bucket_name" {
value = "${aws_s3_bucket.s3_docs.bucket}"
}
output "docs_bucket_arn" {
value = "${aws_s3_bucket.s3_docs.arn}"
}
output "docs_bucket_website_endpoint" {
value = "${aws_s3_bucket.s3_docs.website_endpoint}"
}
output "environment2" {
value = "${var.environment2}"
}
output "docs_bucket2_name" {
value = "${aws_s3_bucket.s3_docs2.bucket}"
}
output "docs_bucket2_arn" {
value = "${aws_s3_bucket.s3_docs2.arn}"
}
output "docs_bucket2_website_endpoint" {
value = "${aws_s3_bucket.s3_docs2.website_endpoint}"
}