14 lines
343 B
HCL
14 lines
343 B
HCL
output "website_bucket_name" {
|
|
description = "Name (id) of the bucket"
|
|
value = aws_s3_bucket.site.id
|
|
}
|
|
|
|
output "bucket_endpoint" {
|
|
description = "Bucket endpoint"
|
|
value = aws_s3_bucket_website_configuration.site.website_endpoint
|
|
}
|
|
|
|
output "domain_name" {
|
|
description = "Website endpoint"
|
|
value = var.site_domain
|
|
} |