How can I update a stack parameter which was set by an SSM parameter?

0

I have an SSM parameter value set with a value I want to use in a CFN template. In the CFN template I have a parameter configured as follows:

Parameters:
  DDAPIKEY:
    Type: String
    Default: '{{resolve:ssm:DDAPIKEY:1}}' 

I then use this parameter as an environment variable in a lambda function. This works for the first deployment just fine, but if I change the SSM parameter value and redeploy the stack my expectation is that my lambda function would be updated. But given how CFN default parameters work (they only set the value the first time) I'm out of luck. Subsequent deployments do not update the environment variable even if the SSM parameter value is changed.

Am I mistaken about something or are there ways to work around this?

質問済み 4年前1418ビュー
1回答
0

Nevermind. I didn't realize you could use the {{resolve:ssm:DDAPIKEY:2}} notation in a parameter override. Since you can do that, then I have a workaround.

回答済み 4年前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ