We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d8f130 commit b2d606eCopy full SHA for b2d606e
README.md
@@ -6,11 +6,12 @@ Used to publish static website files to an S3 bucket with proper MIME type
6
``` Terraform
7
module "s3-static-website" {
8
source = "Lupus-Metallum/s3-static-website/aws"
9
- version = "1.0.1"
+ version = "1.0.6"
10
11
bucket_id = aws_s3_bucket.example.id
12
file_path = "${path.module}/src/my-website-files/" # Where your index.html and TLD web content lives
13
acl = "public-read"
14
storage_class = "STANDARD"
15
+ cache_control = "max-age=31536000"
16
}
17
```
0 commit comments