We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba95e6d commit 42f314cCopy full SHA for 42f314c
README.md
@@ -241,7 +241,8 @@ $ echo "$QUEUE_POLICY" | jq .
241
$ cat << EOF > /tmp/queue-attributes.json
242
{
243
"MessageRetentionPeriod": "300",
244
- "Policy": "$(echo $QUEUE_POLICY | sed 's/\"/\\"/g' | tr -d -s '\n' " ")"
+ "Policy": "$(echo $QUEUE_POLICY | sed 's/\"/\\"/g' | tr -d -s '\n' " ")",
245
+ "SqsManagedSseEnabled": true
246
}
247
EOF
248
docs/cfn-template.yaml
@@ -4,6 +4,7 @@ Resources:
4
Type: 'AWS::SQS::Queue'
5
Properties:
6
MessageRetentionPeriod: 300
7
+ SqsManagedSseEnabled: true
8
QueuePolicy:
9
Type: 'AWS::SQS::QueuePolicy'
10
0 commit comments