Riku Voipio | cc7f42f | 2021-02-17 15:00:32 +0200 | [diff] [blame^] | 1 | output "id" { |
2 | description = "Name of the bucket" | ||||
3 | value = "${aws_s3_bucket.s3bucket.id}" | ||||
4 | } | ||||
5 | |||||
6 | output "arn" { | ||||
7 | description = "ARN of the bucket" | ||||
8 | value = "${aws_s3_bucket.s3bucket.arn}" | ||||
9 | } | ||||
10 | |||||
11 | output "region" { | ||||
12 | description = "Region of the bucket" | ||||
13 | value = "${aws_s3_bucket.s3bucket.region}" | ||||
14 | } |