Skip to content

Commit

Permalink
fix sqs policy
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Nov 22, 2021
1 parent ade6b32 commit b7683e2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,3 +122,7 @@
* v1.13.2 -- 20210713
- general
- change ip_restriction to be a dynamic condition block to also include VpcSourceIp

* v1.13.3 -- 20211122
- config
- fix by commenting policy_id from sqs policies
2 changes: 1 addition & 1 deletion common/version.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
locals {
_module_version = "1.13.2"
_module_version = "1.13.3"
}
4 changes: 2 additions & 2 deletions config/sqs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ resource "aws_sqs_queue_policy" "config_deadletter" {
}

data "aws_iam_policy_document" "config_sqs_deadletter" {
policy_id = "SQSDefaultPolicy"
# policy_id = "SQSDefaultPolicy"
statement {
sid = "AllowSQSReceiveMessage"
effect = "Allow"
Expand Down Expand Up @@ -97,7 +97,7 @@ resource "aws_sqs_queue_policy" "config" {
}

data "aws_iam_policy_document" "config_sqs" {
policy_id = "SQSDefaultPolicy"
# policy_id = "SQSDefaultPolicy"
statement {
sid = "AllowSNSSendMessage"
effect = "Allow"
Expand Down

0 comments on commit b7683e2

Please sign in to comment.