Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

enable SQS server-side encryption #856

Merged
merged 1 commit into from
Jun 27, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
enable SQS server-side encryption
cjerad committed Jun 27, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 0dd2199e0dcea31f03aca30d42e21dea069d359a
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -241,7 +241,8 @@ $ echo "$QUEUE_POLICY" | jq .
$ cat << EOF > /tmp/queue-attributes.json
{
"MessageRetentionPeriod": "300",
"Policy": "$(echo $QUEUE_POLICY | sed 's/\"/\\"/g' | tr -d -s '\n' " ")"
"Policy": "$(echo $QUEUE_POLICY | sed 's/\"/\\"/g' | tr -d -s '\n' " ")",
"SqsManagedSseEnabled": true
}
EOF
1 change: 1 addition & 0 deletions docs/cfn-template.yaml
Original file line number Diff line number Diff line change
@@ -4,6 +4,7 @@ Resources:
Type: 'AWS::SQS::Queue'
Properties:
MessageRetentionPeriod: 300
SqsManagedSseEnabled: true
QueuePolicy:
Type: 'AWS::SQS::QueuePolicy'
Properties: