output "id" { | |
description = "Name of the bucket" | |
value = "${aws_s3_bucket.s3bucket.id}" | |
} | |
output "arn" { | |
description = "ARN of the bucket" | |
value = "${aws_s3_bucket.s3bucket.arn}" | |
} | |
output "region" { | |
description = "Region of the bucket" | |
value = "${aws_s3_bucket.s3bucket.region}" | |
} |