Skip to main content
outputs.tf225 B
View on GitHub
output "bucket_id" {
description = "The name (ID) of the S3 bucket."
value = aws_s3_bucket.default.id
}

output "bucket_arn" {
description = "The ARN of the S3 bucket."
value = aws_s3_bucket.default.arn
}

Related Documentation