Skip to content

Instantly share code, notes, and snippets.

@KyMidd
Created May 10, 2022 01:57
Show Gist options
  • Select an option

  • Save KyMidd/70e5e7bfbc95ba8b6732709c6b305a5e to your computer and use it in GitHub Desktop.

Select an option

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