Skip to content

Instantly share code, notes, and snippets.

@KyMidd
Created August 29, 2022 18:28
Show Gist options
  • Select an option

  • Save KyMidd/6ffeae4f24c9e6f6f9dcf5df62a5c4f1 to your computer and use it in GitHub Desktop.

Select an option

Save KyMidd/6ffeae4f24c9e6f6f9dcf5df62a5c4f1 to your computer and use it in GitHub Desktop.
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