Skip to content

Commit

Permalink
Add missing access right requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
miensol committed Jun 25, 2024
1 parent a9b0640 commit 423903f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export class SelfSignedCertificate extends Construct {
description: 'Lambda function created by the custom resource provider',
policyStatements: [{
Effect: 'Allow',
Action: 'acm:ImportCertificate',
Action: ['acm:ImportCertificate', 'acm:AddTagsToCertificate'],
Resource: '*',
}],
});
Expand Down

0 comments on commit 423903f

Please sign in to comment.