Created
May 10, 2022 01:57
-
-
Save KyMidd/70e5e7bfbc95ba8b6732709c6b305a5e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| resource "aws_s3_object" "website" { | |
| bucket = aws_s3_bucket.aws_s3_bucket.id | |
| key = "index.html" | |
| acl = "private" | |
| source = "./website/index.html" | |
| etag = filemd5("./website/index.html") | |
| content_type = "text/html" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment