We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The resources for an S3 bucket were generated as
resource "aws_s3_bucket" "S3Bucket" { bucket = "my-bucket-XXX" } resource "aws_s3_bucket_policy" "S3BucketPolicy" { bucket = "my-bucket-XXX" policy = "{\"Version\":\"2008-10-17\",\"Statement\":[{\"Effect\":\"Deny\",\"Principal\":\"*\",\"Action\":\"s3:GetObject\",\"Resource\":\"arn:aws:s3:::my-bucket-XXX/*\",\"Condition\":{\"Bool\":{\"aws:SecureTransport\":\"false\"}}}]}" }
According to the docs, aws_s3_bucket_policy.bucket should be the id of the bucket. Use aws_s3_bucket.S3Bucket.id instead.
aws_s3_bucket_policy.bucket
aws_s3_bucket.S3Bucket.id
The text was updated successfully, but these errors were encountered:
Add S3 reference mappings #320
f65ce6a
Hi @rorourke-iot,
Thanks for raising! As per the other issues comment, I've added the mapping for this specific instance.
Sorry, something went wrong.
No branches or pull requests
The resources for an S3 bucket were generated as
According to the docs,
aws_s3_bucket_policy.bucket
should be the id of the bucket. Useaws_s3_bucket.S3Bucket.id
instead.The text was updated successfully, but these errors were encountered: