mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
16 lines
No EOL
322 B
HCL
16 lines
No EOL
322 B
HCL
output "bucket_name" {
|
|
description = "The name of the S3 bucket"
|
|
value = aws_s3_bucket.bucket.bucket
|
|
}
|
|
|
|
output "bucket_id" {
|
|
value = aws_s3_bucket.bucket.id
|
|
}
|
|
|
|
output "bucket_arn" {
|
|
value = aws_s3_bucket.bucket.arn
|
|
}
|
|
|
|
output "bucket_domain_name" {
|
|
value = aws_s3_bucket.bucket.bucket_regional_domain_name
|
|
} |