0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

パブリックパラメータを使用する

Posted at

一部のAWSサービスは、共通のアーティファクトをAWS Systems Managerのパブリックパラメータとして公開します。例えば、Amazon EC2サービスは、AMIsに関する情報をパブリックパラメータとして公開しています。

パブリックパラメータを利用することで、AWS CLIからEC2を作成する場合のAMIを指定することができます。

パブリックパラメータを検索する

すべてのパラメータの一覧を表示する場合は以下のコマンドを実行してください。

aws ssm get-parameters-by-path --path /aws/service/list --query "Parameters[*].Name"

 
AMIsのパラメータを表示する場合は以下のコマンドを実行してください

aws ssm get-parameters-by-path --path /aws/service/ami-amazon-linux-latest --query "Parameters[*].Name"

 
Amazon Linux2のAMIのパラメータを表示する場合は以下のコマンドを実行してください。

aws ssm get-parameters --names /aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2

 
詳細はAWSの公式ドキュメントを参照してください。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?