Skip to content

Commit 423903f

Browse files
committed
Add missing access right requirement
1 parent a9b0640 commit 423903f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export class SelfSignedCertificate extends Construct {
2929
description: 'Lambda function created by the custom resource provider',
3030
policyStatements: [{
3131
Effect: 'Allow',
32-
Action: 'acm:ImportCertificate',
32+
Action: ['acm:ImportCertificate', 'acm:AddTagsToCertificate'],
3333
Resource: '*',
3434
}],
3535
});

0 commit comments

Comments
 (0)