Skip to content

Commit

Permalink
change case
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Nov 26, 2021
1 parent f79e3f5 commit f84ddb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cloudtrail/sqs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ data "aws_iam_policy_document" "cloudtrail_deadletter" {
statement {
sid = "AllowSNSSendMessage"
effect = "Allow"
actions = ["SQS:SendMessage"]
actions = ["sqs:SendMessage"]
resources = [var.enable_sqs ? aws_sqs_queue.cloudtrail_deadletter[0].arn : ""]
principals {
type = "AWS"
Expand Down Expand Up @@ -79,7 +79,7 @@ data "aws_iam_policy_document" "cloudtrail_sqs" {
statement {
sid = "AllowSNSSendMessage"
effect = "Allow"
actions = ["SQS:SendMessage"]
actions = ["sqs:SendMessage"]
resources = [var.enable_sqs ? aws_sqs_queue.cloudtrail[0].arn : ""]
principals {
type = "AWS"
Expand Down

0 comments on commit f84ddb6

Please sign in to comment.