-
Notifications
You must be signed in to change notification settings - Fork 4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(aws-ssm): valueFromLookup should have an option to skip context caching #12366
Comments
There may in fact be many cases where it might be useful to have this option. not just for ssm lookups but any context lookup |
The workaround I've been using is to build the reset into the CI/CD pipeline:
|
This issue has received a significant amount of attention so we are automatically upgrading its priority. A member of the community will see the re-prioritization and provide an update on the issue. |
I have a similar use case and want to know if this is being explored any time soon? |
any progress? similar issue here |
PR at #29372 to add this |
When using
ssm.StringParameter.valueFromLookup()
I would like to have the option to not store the value of the parameter in thecdk context
so the parameter is resolved every time that Isynth
.Use Case
In particular, I store the value of which ECR Image Tag should be deployed in my Task Definition for my Fargate Service. Currently, if I forget to
cdk context --reset ...
then I can potentially deploy a previous version of the application. If I was able to skip storing the value in the context I would not have to manage this risk.Proposed Solution
This is a 🚀 Feature Request
The text was updated successfully, but these errors were encountered: