1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16output "bucket_name" { value = aws_s3_bucket.this.id } output "distribution_id" { value = aws_cloudfront_distribution.this.id } output "distribution_domain_name" { value = aws_cloudfront_distribution.this.domain_name } output "url" { value = var.domain_name != null ? "https://${var.domain_name}" : "https://${aws_cloudfront_distribution.this.domain_name}" }