diff --git a/docs/pages/reference/backends.mdx b/docs/pages/reference/backends.mdx index cf447033a543c..7295935b7e7f9 100644 --- a/docs/pages/reference/backends.mdx +++ b/docs/pages/reference/backends.mdx @@ -1062,7 +1062,7 @@ You'll need to replace these values in the policy example below: { "Action": "sns:Publish", "Effect": "Allow", - "Resource": "arn:aws:sns:eu-central-1:1234567890:audit-sqs", + "Resource": "arn:aws:sns:eu-central-1:1234567890:audit-sns", "Sid": "AllowPublishSNS" }, { @@ -1071,7 +1071,7 @@ You'll need to replace these values in the policy example below: "sqs:DeleteMessage" ], "Effect": "Allow", - "Resource": "arn:aws:sqs:eu-central-1:1234567890:audit-sns", + "Resource": "arn:aws:sqs:eu-central-1:1234567890:audit-sqs", "Sid": "AllowReceiveSQS" }, { diff --git a/examples/athena/athena.tf b/examples/athena/athena.tf index 0812ba007c963..198a20f4e6209 100644 --- a/examples/athena/athena.tf +++ b/examples/athena/athena.tf @@ -205,7 +205,6 @@ resource "aws_glue_catalog_table" "audit_table" { "projection.event_date.range" = "NOW-4YEARS,NOW", "storage.location.template" = format("s3://%s/events/$${event_date}/", aws_s3_bucket.long_term_storage.bucket) "classification" = "parquet" - "classification" = "parquet", "parquet.compression" = "SNAPPY", } storage_descriptor {