Skip to content

Commit

Permalink
Merge branch 'main' of github.com:dfpc-coe/CloudTAK into force-delete
Browse files Browse the repository at this point in the history
  • Loading branch information
ingalls committed Aug 13, 2024
2 parents 99c258e + 3d09399 commit ef3adf8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@

### Pending Release

### v3.0.1 - 2024-08-12

- :bug: For an unknown reason CloudFormation needs the list permission now, reasonable but not sure what changed

### v3.0.0 - 2024-08-12

- :rocket: **Breaking** Create Mission Syncs with POST request, simplifying the internal code
Expand Down
5 changes: 3 additions & 2 deletions cloudformation/lib/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -286,8 +286,9 @@ export default {
'logs:CreateLogGroup',
'logs:DeleteLogGroup',
'logs:PutRetentionPolicy',
'logs:describe*',
'logs:get*'
'logs:List*',
'logs:Describe*',
'logs:Get*'
],
Resource: [
cf.join(['arn:', cf.partition, ':logs:', cf.region, ':', cf.accountId, ':log-group:/aws/lambda/', cf.stackName, '-layer-*'])
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@tak-ps/CloudTAK",
"type": "module",
"version": "3.0.0",
"version": "3.0.1",
"description": "Facilitate ETL operations to bring non-TAK sources into a TAK Server",
"scripts": {
"lint": "eslint cloudformation/**/*.js",
Expand Down

0 comments on commit ef3adf8

Please sign in to comment.