fix(redshift): enableRebootForParameterChanges fails synth with "cannot find entry file…"#28760
fix(redshift): enableRebootForParameterChanges fails synth with "cannot find entry file…"#28760mergify[bot] merged 7 commits intoaws:mainfrom
Conversation
…t find entry file...
aws-cdk-automation
left a comment
There was a problem hiding this comment.
The pull request linter has failed. See the aws-cdk-automation comment below for failure reasons. If you believe this pull request should receive an exemption, please comment and provide a justification.
A comment requesting an exemption should contain the text Exemption Request. Additionally, if clarification is needed add Clarification Request to a comment.
✅ Updated pull request passes all PRLinter validations. Dismissing previous PRLinter review.
kaizencc
left a comment
There was a problem hiding this comment.
Some documentation changes and then we're all good. Thanks @paulhcsun
| awscdklibdir=${scriptdir}/.. | ||
|
|
||
| function airlift() { | ||
| # core needs to be airlifted directly to core to prevent circular dependencies |
There was a problem hiding this comment.
is this comment still relevant?
| stabilized, part of the stabilization process **must** be to remove `-alpha` from the folder | ||
| name, so that it is included in `aws-cdk-lib`. | ||
|
|
||
| `*/generated.ts` files are not supported for alpha modules due to import paths that only work for stable modules in `aws-cdk-lib`. |
There was a problem hiding this comment.
Explain that they must be added into custom-resources-framework/config.ts as ComponentType.NO_OP
|
|
||
| ### Experimental: | ||
|
|
||
| - aws-amplify-alpha/asset-deployment-handler |
|
Thank you for contributing! Your pull request will be updated from main and then merged automatically (do not update manually, and be sure to allow changes to be pushed to your fork). |
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
|
Thank you for contributing! Your pull request will be updated from main and then merged automatically (do not update manually, and be sure to allow changes to be pushed to your fork). |
This is a follow up to #28658, #28772, and #28760. We had to fix multiple places where that file path extended beyond the package itself into other areas of the local repository (that would not be available after packaging). This caused myriad issues at synth time with `file not found` errors. This PR introduces a linter rule with the following specifications: - no inefficient paths, i.e. no going backwards multiple times. Ex. `path.join(__dirname, '..', 'folder', '..', 'another-folder')`. This should and can be easily simplified - no paths that go backwards past a `package.json` file. This should catch the instances we faced next time. The `yarn lint` command on `aws-cdk-lib` took 51.47s seconds without this new rule and 53.32s seconds with the rule enabled. The difference of ~2 seconds shouldn't be a hindrance in this case but I am happy to look for additional efficiencies in the rule I've written. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
This is a follow up to #28658, #28772, and #28760. We had to fix multiple places where that file path extended beyond the package itself into other areas of the local repository (that would not be available after packaging). This caused myriad issues at synth time with `file not found` errors. This PR introduces a linter rule with the following specifications: - no inefficient paths, i.e. no going backwards multiple times. Ex. `path.join(__dirname, '..', 'folder', '..', 'another-folder')`. This should and can be easily simplified - no paths that go backwards past a `package.json` file. This should catch the instances we faced next time. The `yarn lint` command on `aws-cdk-lib` took 51.47s seconds without this new rule and 53.32s seconds with the rule enabled. The difference of ~2 seconds shouldn't be a hindrance in this case but I am happy to look for additional efficiencies in the rule I've written. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
This is a follow up to #28658, #28772, and #28760. We had to fix multiple places where that file path extended beyond the package itself into other areas of the local repository (that would not be available after packaging). This caused myriad issues at synth time with `file not found` errors. This PR introduces a linter rule with the following specifications: - no inefficient paths, i.e. no going backwards multiple times. Ex. `path.join(__dirname, '..', 'folder', '..', 'another-folder')`. This should and can be easily simplified - no paths that go backwards past a `package.json` file. This should catch the instances we faced next time. The `yarn lint` command on `aws-cdk-lib` took 51.47s seconds without this new rule and 53.32s seconds with the rule enabled. The difference of ~2 seconds shouldn't be a hindrance in this case but I am happy to look for additional efficiencies in the rule I've written. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
Error:
This PR fixes the same issue detailed in #28658 but for
aws-redshift-alphaas both modules have the same issue with accessingcustom-resource-handlers.This PR uses the same airlift mechanism as
aws-cdk-libto move the necessary files into theaws-redshift-alphapackage so its structure now looks like this:The airlift script only moves the
index.jsfile and not the*/generated.tsfiles because imports in alpha module*/generated.tsfiles do not currently work since the import paths were written to only support stable modules inaws-cdk-lib.I've tested the
aws-redshift-alphapackage locally on a local CDK app and confirmed the necessary structure exists in the packaged module. The local app calls thecluster.enableRebootForParameterChanges()method which creates the custom resource and I was able to verify that the cluster deploys properly and is rebootable.Related to #28633 but this is the fix for
aws-redshift-alphaBy submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license