Created
July 24, 2021 03:52
-
-
Save oxlb/48b59c222846417f62fed702de6641f1 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
# 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