Skip to content

Commit

Permalink
Update examples/simple/outputs.tf
Browse files Browse the repository at this point in the history
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
  • Loading branch information
bendoerr and coderabbitai[bot] authored Aug 20, 2024
1 parent 0023e05 commit 93e6257
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions examples/simple/outputs.tf
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."
}

0 comments on commit 93e6257

Please sign in to comment.