Skip to content
This repository has been archived by the owner on Feb 3, 2021. It is now read-only.

Commit

Permalink
fix(firmware-ci): allow deletion of firmware files
Browse files Browse the repository at this point in the history
  • Loading branch information
coderbyheart committed Nov 12, 2020
1 parent 3225e7f commit e788d17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cdk/resources/FirmwareCI.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ export class FirmwareCI extends CloudFormation.Resource {
ciUser.addToPolicy(
new IAM.PolicyStatement({
resources: [`${this.bucket.bucketArn}/*`],
actions: ['s3:PutObject'],
actions: ['s3:PutObject', 's3:DeleteObject'],
}),
)

Expand Down

0 comments on commit e788d17

Please sign in to comment.