-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
- Loading branch information
1 parent
0023e05
commit 93e6257
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
output "s3_bucket_id" { | ||
value = module.cloudfront_with_s3_origin.s3_bucket_id | ||
description = "TODO" | ||
description = "The ID of the S3 bucket used for the CloudFront origin." | ||
} | ||
|
||
output "s3_bucket_arn" { | ||
value = module.cloudfront_with_s3_origin.s3_bucket_arn | ||
description = "TODO" | ||
description = "The ARN of the S3 bucket used for the CloudFront origin." | ||
} | ||
|
||
output "cloudfront_distribution_id" { | ||
value = module.cloudfront_with_s3_origin.cloudfront_distribution_id | ||
description = "TODO" | ||
description = "The ID of the CloudFront distribution." | ||
} | ||
|
||
output "cloudfront_distribution_arn" { | ||
value = module.cloudfront_with_s3_origin.cloudfront_distribution_arn | ||
description = "TODO" | ||
description = "The ARN of the CloudFront distribution." | ||
} | ||
|
||
output "cloudfront_distribution_domain_name" { | ||
value = module.cloudfront_with_s3_origin.cloudfront_distribution_domain_name | ||
description = "TODO" | ||
description = "The domain name of the CloudFront distribution." | ||
} |