Skip to content

Commit 6642b61

Browse files
hickeydh-awsrycerratBrian969rjjaegerawsColinL2021
authored
CDK Rebase (#1117)
* Rebased and merging in actual changes * Adding code for destination policy update * Changing logic to use subscriptionFilterRoleArn * Updating custom resource runtime * Testing some code for update custom resource * Trying to force custom resource update * Updating uuid to force update * Fixing custom resource again * Removing uuid from other function * Fixing uuid() * Fixing props object * ADding some logging * Moving logging * More logging * Fixing subscriptionfilterrolearn * Removing additional log statements * Reducing Store Outputs SM max concurrency from 50 to 20. Also adding limit increase requests for both CloudWatch Logs and Lambda Concurrency * Reducing Store Outputs SM max concurrency from 50 to 20. Also adding limit increase requests for both CloudWatch Logs and Lambda Concurrency * Updating maxconcurrency in one more sm to 20 * Adding extra logging stmts * Removing additional logging statements * Moving SM concurrent executions down to 10 from 20 to Mirror Ryan's limits * Create force-github-actions.txt * Create force-github-actions.txt * Prettier Formatting * Fixing prettier issue with more files * Fixing prettier issues * Fixing typing issue for results * Adding if statement around subscriptionFilterRoleArn. If it doesn't exist, don't add Subscription Filter * update alb ip monitor dns lookup check * CDK v2 upgrade with merged in code * Fixing initial setup props and adding backoff * removing cdk from cdk.IConstruct * Replacing all on @aws-cdk to aws-cdk-lib and fixing packaging issues * Fixing IConstruct import * IConstruct in another function... * Fixing aws-cdk/core/lib/debug * Adding logging inside constructor to see if this.principals exists * Adding conditional around this.principals * Changing null check for list.length * Extra logging in createSecret * Fixing construct import * adding path * Upgrading path * Adding path for phase 5 stuff * update fortinet amis to 6.4.11/6.4.9 * Fixing formatting * Last formatting fix * Fixing IDependable import * Fixing Construct imports * Fixing Construct Node issue * Fixing import issue in guardduty admin setup * Fixing 'cdk.aws_certificatemanager.ValidationMethod' issue by switching to validation * Removing trustAccountIdentities: true since it is default and deprecated * Fixing validation issue in acm * Fixing additiona; test issues in certificates, name-tagger.spec and unsupported-changed.spec.ts * Name Tagger Test update * Fixing cfnspec import issue * Fixing jest.ts assert import * Adding update in package.json * changing aws-core to aws-cdk-lib in jest.ts * Fixing dependency for custom-resource-macie-enable-runtime * Updating pnpm-lock * Adding dependencies for a few custom resources * Fixing jest template issue * Fixing custom resource package.json * Fixing imports for Handler properties on macie-export and macie-update; ' * CloudASsembly * Updating snapshot, snapshot changed from c8XXXXX to human readable names due to new unique id * AWS Config rule IAM Password Policy boolean values * Fixed install error and updated lock file * Fixed linting and dependencies * Fix for PrincipalArn behavior in L-SFN-MasterRole * Fixing role arn * Fixing role, adding iam after partition * Switching / and : in arn * changed param name to shorthand --------- Co-authored-by: Ryan Cerrat <rycerrat@amazon.com> Co-authored-by: rycerrat <42330513+rycerrat@users.noreply.github.com> Co-authored-by: Brian969 <56414362+Brian969@users.noreply.github.com> Co-authored-by: Ryan Jaeger <rjjaeger@amazon.com> Co-authored-by: Colin Lavallee <lavcolin@amazon.com> Co-authored-by: hickeydh <hickeydh@amazon.com>
1 parent b5dc19c commit 6642b61

File tree

342 files changed

+4975
-7471
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

342 files changed

+4975
-7471
lines changed

.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ module.exports = {
5454
],
5555
'@typescript-eslint/no-empty-function': 'error',
5656
'@typescript-eslint/no-empty-interface': 'error',
57-
'@typescript-eslint/no-explicit-any': 'warn',
57+
'@typescript-eslint/no-explicit-any': 'off',
5858
'@typescript-eslint/no-floating-promises': 'error',
5959
'@typescript-eslint/no-misused-new': 'error',
6060
'@typescript-eslint/no-namespace': 'off',

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,20 @@
55
"build": "pnpm recursive run --no-bail build",
66
"test": "pnpm recursive run --no-bail --workspace-concurrency 1 test -- --pass-with-no-tests --silent --max-workers 1",
77
"lint:typecheck": "pnpx tsc -p tsconfig.tsc.json ",
8-
"lint:eslint": "pnpx eslint . --ext .js,.jsx,.ts,.tsx"
8+
"lint:eslint": "pnpx eslint . --ext .ts,.tsx"
99
},
1010
"devDependencies": {
1111
"@types/node": "14.14.31",
1212
"@typescript-eslint/eslint-plugin": "4.22.0",
1313
"@typescript-eslint/parser": "4.22.0",
14-
"prettier": "2.2.1",
1514
"eslint": "7.25.0",
16-
"eslint-config-prettier": "8.3.0",
15+
"eslint-config-prettier": "7.2.0",
1716
"eslint-plugin-deprecation": "1.2.0",
1817
"eslint-plugin-import": "2.22.1",
1918
"eslint-plugin-jsdoc": "33.0.0",
2019
"eslint-plugin-prefer-arrow": "1.2.3",
2120
"eslint-plugin-react": "7.23.2",
22-
"eslint-plugin-unicorn": "31.0.0"
21+
"eslint-plugin-unicorn": "31.0.0",
22+
"prettier": "2.2.1"
2323
}
2424
}

0 commit comments

Comments
 (0)