Skip to content

Commit

Permalink
Fix minor issue with athena backends documentation (#41141)
Browse files Browse the repository at this point in the history
  • Loading branch information
logand22 authored May 3, 2024
1 parent d922366 commit f8b054e
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 @@ -1055,7 +1055,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 @@ -1064,7 +1064,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 f8b054e

Please sign in to comment.