outputs.tf 356 B

1234567891011121314
  1. output "s3_bucket_arn" {
  2. description = "The ARN of the bucket"
  3. value = aws_s3_bucket.this.arn
  4. }
  5. output "s3_bucket_domain_name" {
  6. description = "The domain name of the bucket"
  7. value = aws_s3_bucket.this.bucket_domain_name
  8. }
  9. output "s3_bucket_name" {
  10. description = "The name of the bucket"
  11. value = aws_s3_bucket.this.bucket
  12. }