Skip to content

Commit

Permalink
Fix delete policy (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
Grunet authored Aug 4, 2023
1 parent 91f1e33 commit d999437
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
4 changes: 4 additions & 0 deletions packages/aws-cloudformation/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ What is in scope for breaking changes includes (but isn't necessarily limited to

## Changes

### v0.1.1

- Fix bug that wouldn't let the delete policy work without also having the create policy

### v0.1.0

- Created a Cloudformation template to deploy the honeypot as a single task running in an ECS service
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,11 @@ Resources:
- Sid: ecs
Effect: Allow
Action:
- ecs:DescribeClusters
- ecs:DeleteCluster
- ecs:DescribeServices
- ecs:DeleteService
- ecs:DeregisterTaskDefinition
# - ecs:DeregisterTaskDefinition # See reason below
Resource: "*"
Condition:
StringEquals:
Expand Down
2 changes: 1 addition & 1 deletion packages/aws-cloudformation/version.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "0.1.0"
"version": "0.1.1"
}

0 comments on commit d999437

Please sign in to comment.