Created
August 29, 2022 18:28
-
-
Save KyMidd/6ffeae4f24c9e6f6f9dcf5df62a5c4f1 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.s3_bucket.id | |
| key = "index.html" | |
| acl = "private" | |
| source = "index.html" | |
| etag = filemd5("index.html") | |
| content_type = "text/html" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment