CloudFormation SSM Parameters List

0

I was wondering if there is any news as to whether this will be supported:

"ListAWS::SSM::Parameter::Value"

It is currently documented as unsupported here: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/parameters-section-structure.html

The customer is looking to create a visual drop down in a template that is driven off of parameters and would like to be able to dynamically populate the drop down instead of hard coding.

質問済み 4年前484ビュー
1回答
0
承認された回答

I can't say for the feature you're asking. But you could workaround this by maintaining the list with a lambda triggered which would "build" the list from a call to :

aws ssm get-parameters-by-path --path / --query "Parameters[*].{Name:Name}"

And store it in a parameter as a list already built to be used:

aws ssm put-parameter --name mb-tag-list --value $list --overwrite --type StringList

On update trigger a lambda through a Cloudwatch Event a lambda that get the list and update the corresponding parameter store.

I build it in a small shell script (but any language could work!) to prove that it works :

#!/bin/bash -x

list=$(aws ssm get-parameters-by-path --path / --query "Parameters[*].{Name:Name}" | jq -c 'map(.Name) | join(",")')

aws ssm put-parameter --name mb-tag-list --value $list --overwrite --type StringList
AWS
MB
回答済み 4年前
profile picture
エキスパート
レビュー済み 1ヶ月前

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

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

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

関連するコンテンツ