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

fix(sqs): redrivePermission is set to byQueue no matter what value is specified #29130

Merged
merged 5 commits into from
Mar 1, 2024
Merged
Show file tree
Hide file tree
Changes from 3 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
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,21 @@
"Resources": {
"SourceQueue1F4BBA4BB": {
"Type": "AWS::SQS::Queue",
"Properties": {
"RedriveAllowPolicy": {
"redrivePermission": "allowAll"
}
},
"UpdateReplacePolicy": "Delete",
"DeletionPolicy": "Delete"
},
"SourceQueue22481CB5A": {
"Type": "AWS::SQS::Queue",
"Properties": {
"RedriveAllowPolicy": {
"redrivePermission": "denyAll"
}
},
"UpdateReplacePolicy": "Delete",
"DeletionPolicy": "Delete"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,16 @@ const app = new App();

const stack = new Stack(app, 'aws-cdk-sqs');

const sourceQueue1 = new Queue(stack, 'SourceQueue1');
const sourceQueue2 = new Queue(stack, 'SourceQueue2');
const sourceQueue1 = new Queue(stack, 'SourceQueue1', {
redriveAllowPolicy: {
redrivePermission: RedrivePermission.ALLOW_ALL,
},
});
const sourceQueue2 = new Queue(stack, 'SourceQueue2', {
redriveAllowPolicy: {
redrivePermission: RedrivePermission.DENY_ALL,
},
});

new Queue(stack, 'DeadLetterQueue', {
redriveAllowPolicy: {
Expand Down
2 changes: 1 addition & 1 deletion packages/aws-cdk-lib/aws-sqs/lib/queue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ export class Queue extends QueueBase {
redrivePermission: props.redriveAllowPolicy.redrivePermission
// When `sourceQueues` is provided in `redriveAllowPolicy`, `redrivePermission` defaults to allow specified queues (`BY_QUEUE`);
// otherwise, it defaults to allow all queues (`ALLOW_ALL`).
?? props.redriveAllowPolicy.sourceQueues ? RedrivePermission.BY_QUEUE : RedrivePermission.ALLOW_ALL,
?? (props.redriveAllowPolicy.sourceQueues ? RedrivePermission.BY_QUEUE : RedrivePermission.ALLOW_ALL),
sourceQueueArns: props.redriveAllowPolicy.sourceQueues?.map(q => q.queueArn),
} : undefined;

Expand Down
27 changes: 27 additions & 0 deletions packages/aws-cdk-lib/aws-sqs/test/sqs.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -753,6 +753,33 @@ describe('redriveAllowPolicy', () => {
});
});

test.each([
[sqs.RedrivePermission.ALLOW_ALL, 'allowAll'],
[sqs.RedrivePermission.DENY_ALL, 'denyAll'],
])('redrive permission can be set to %s', (permission, expected) => {
const stack = new Stack();
new sqs.Queue(stack, 'Queue', {
redriveAllowPolicy: {
redrivePermission: permission,
},
});

Template.fromStack(stack).templateMatches({
'Resources': {
'Queue4A7E3555': {
'Type': 'AWS::SQS::Queue',
'Properties': {
'RedriveAllowPolicy': {
'redrivePermission': expected,
},
},
'UpdateReplacePolicy': 'Delete',
'DeletionPolicy': 'Delete',
},
},
});
});

test('explicit specification of dead letter source queues', () => {
const stack = new Stack();
const sourceQueue1 = new sqs.Queue(stack, 'SourceQueue1');
Expand Down