注意点

Paramater Store

CLI操作一覧

検索(/Test/IAD/helloWorldのキーを検索する)aws ssm describe-parameters --filters "Key=Name,Values=/Test/IAD/helloWorld"
追加aws ssm put-parameter --name "/Test/IAD/helloWorld" --value "My1stParameter" --type String

IAM

https://docs.aws.amazon.com/ja_jp/systems-manager/latest/userguide/sysman-paramstore-access.html

管理ポリシーを使うならば、AmazonSSMReadOnlyAccessを付与してもいいかも

インラインポリシー

{
 "Version": "2012-10-17",
 "Statement": [
   {
     "Effect": "Allow",
     "Action": [
       "ssm:GetParameters"
     ],
     "Resource": [
       "arn:aws:ssm:<region>:<aws_account_id>:parameter/*"
     ]
   }
 ]

}

CLI

ECSとの連携

https://qiita.com/hayao_k/items/e34c706464d562d8b8f0

Secret Managerの公式ドキュメント

https://docs.aws.amazon.com/ja_jp/systems-manager/latest/userguide/integration-ps-secretsmanager.html

https://docs.aws.amazon.com/ja_jp/secretsmanager/latest/userguide/tutorials_basic.html

Paramater Store

https://docs.aws.amazon.com/ja_jp/AmazonECS/latest/userguide/specifying-sensitive-data-parameters.html

その他参考情報

https://qiita.com/inductor/items/ac8f4a1a947f0d3bbaa6

cli


トップ   編集 凍結 差分 履歴 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS
Last-modified: 2022-10-14 (金) 13:16:52