3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

AWSのLaunchConfigをLaunchConfigurationNameで絞るコマンド

Posted at

AWSのLaunchConfig一覧をLaunchConfigurationNameで絞るコマンド

aws autoscaling describe-launch-configurations \
    | jq '.LaunchConfigurations[] \
    | select(.LaunchConfigurationName \
    | contains("*LAUNCH_CONFIG_NAME*")) \
    | .LaunchConfigurationName ' \
    -r \

selectした後にcontainsする技は

ようへいの日々精進 XP - よく使う aws-cli 「私的」コマンドチートシートとか jq の使い方とか

を参考に。Kappaさんありがとうございます!

3
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?