https://github.com/babbel/terraform-aws-cloudfront-bucket
Terraform module creating an S3 bucket with a CloudFront distribution in front
https://github.com/babbel/terraform-aws-cloudfront-bucket
aws terraform terraform-module
Last synced: 11 months ago
JSON representation
Terraform module creating an S3 bucket with a CloudFront distribution in front
- Host: GitHub
- URL: https://github.com/babbel/terraform-aws-cloudfront-bucket
- Owner: babbel
- License: mit
- Created: 2022-03-25T09:13:21.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-08-09T18:20:56.000Z (almost 2 years ago)
- Last Synced: 2024-08-10T16:08:04.862Z (almost 2 years ago)
- Topics: aws, terraform, terraform-module
- Language: HCL
- Homepage: https://registry.terraform.io/modules/babbel/cloudfront-bucket/aws
- Size: 50.8 KB
- Stars: 2
- Watchers: 35
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# terraform-aws-cloudfront-bucket
This modules creates an S3 bucket with a CloudFront distribution in front.
The integration between CloudFront and the S3 bucket is protected,
and the bucket is set up to be not directly accessible, only via the CDN.
## Example
```tf
module "cloudfront-bucket-example" {
source = "babbel/cloudfront-bucket/aws"
version = "~> 1.0"
bucket_name = "foo"
}
```