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 6052d5c commit 76c1ab5Copy full SHA for 76c1ab5
README.md
@@ -1,2 +1,16 @@
1
# terraform-aws-s3-static-website
2
Used to publish static website files to an S3 bucket with proper MIME type
3
+
4
+## Example
5
6
+``` Terraform
7
+module "s3-static-website" {
8
+ source = "Lupus-Metallum/s3-static-website/aws"
9
+ version = "1.0.1"
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
+}
16
+```
0 commit comments