DeveloperC
DeveloperC
Thinking more about this, you actually do not even need to touch your `package.json` manually to get this complication errors. Your usage/installation commands will install `@aws-quickstart/eks-blueprints` with a caret(^) so...
Not pinning the `aws-cdk-lib` version is something `@aws-cdk/lambda-layer-kubectl-v*` does e.g. https://github.com/cdklabs/awscdk-asset-kubectl/blob/kubectl-v29/main/package.json#L72
I think an important thing to note about CDK users is that they may not come from a development background. Even with my development background, prior experience with CDK and...
> You can upgrade the version of CDK to any version without issues if you use the override functionality as shown [here](https://github.com/aws-samples/cdk-eks-blueprints-patterns/blob/main/package.json#L50). We should document it better for sure. Thank...
> @DeveloperC286 1.14.0 release is out and should have the fix to address this issue. CDK depedency is moved to `peerDependencies`. You can read more on the behavior [here](https://aws-quickstart.github.io/cdk-eks-blueprints/getting-started/#configure-your-project). >...