blob: c833c3ddfa3c0f92d5f3389f1ea801d5c54f5146 [file] [log] [blame]
Riku Voipiocc7f42f2021-02-17 15:00:32 +02001output "id" {
2 description = "Name of the bucket"
3 value = "${aws_s3_bucket.s3bucket.id}"
4}
5
6output "arn" {
7 description = "ARN of the bucket"
8 value = "${aws_s3_bucket.s3bucket.arn}"
9}
10
11output "region" {
12 description = "Region of the bucket"
13 value = "${aws_s3_bucket.s3bucket.region}"
14}