Skip to content

Commit

Permalink
Fix minor issue with athena backends documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
logand22 committed May 1, 2024
1 parent e8d985f commit 7e7dd21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/pages/reference/backends.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
{
Expand All @@ -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"
},
{
Expand Down
1 change: 0 additions & 1 deletion examples/athena/athena.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 7e7dd21

Please sign in to comment.