Skip to content

Instantly share code, notes, and snippets.

@oxlb
Created July 24, 2021 03:52
Show Gist options
  • Save oxlb/48b59c222846417f62fed702de6641f1 to your computer and use it in GitHub Desktop.
Save oxlb/48b59c222846417f62fed702de6641f1 to your computer and use it in GitHub Desktop.
# Upload an object
resource "aws_s3_bucket_object" "object" {
bucket = aws_s3_bucket.b.id
key = "test.txt"
acl = "public-read"
source = "test.txt"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment