An open API service indexing awesome lists of open source software.

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

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"
}
```