bsmsapp/terraform/modules/s3/outputs.tf

19 lines
697 B
HCL

# --------------------------------------------------------------------
# Amazon S3 output
# --------------------------------------------------------------------
output "id" {
description = "The bucket domain name. Will be of format bucketname.s3.amazonaws.com."
value = aws_s3_bucket.this.id
}
output "arn" {
description = "The ARN of the bucket. Will be of format arn:aws:s3:::bucketname."
value = aws_s3_bucket.this.arn
}
output "website_endpoint" {
description = "The website endpoint, if the bucket is configured with a website. If not, this will be an empty string."
value = var.type == 1 ? aws_s3_bucket_website_configuration.this[0].website_endpoint : ""
}