-
Notifications
You must be signed in to change notification settings - Fork 4.5k
(aws-ssm): valueFromLookup should have an option to skip context caching #12366
Copy link
Copy link
Closed
Labels
@aws-cdk/aws-ssmRelated to AWS Systems ManagerRelated to AWS Systems Managerclosed-for-stalenessThis issue was automatically closed because it hadn't received any attention in a while.This issue was automatically closed because it hadn't received any attention in a while.effort/mediumMedium work item – several days of effortMedium work item – several days of effortfeature-requestA feature should be added or improved.A feature should be added or improved.p2response-requestedWaiting on additional info and feedback. Will move to "closing-soon" in 7 days.Waiting on additional info and feedback. Will move to "closing-soon" in 7 days.
Metadata
Metadata
Assignees
Labels
@aws-cdk/aws-ssmRelated to AWS Systems ManagerRelated to AWS Systems Managerclosed-for-stalenessThis issue was automatically closed because it hadn't received any attention in a while.This issue was automatically closed because it hadn't received any attention in a while.effort/mediumMedium work item – several days of effortMedium work item – several days of effortfeature-requestA feature should be added or improved.A feature should be added or improved.p2response-requestedWaiting on additional info and feedback. Will move to "closing-soon" in 7 days.Waiting on additional info and feedback. Will move to "closing-soon" in 7 days.
When using
ssm.StringParameter.valueFromLookup()I would like to have the option to not store the value of the parameter in thecdk contextso 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