LoginSignup
1
1

More than 5 years have passed since last update.

RDSのパラメータグループをぶっこ抜くコマンド

Posted at
PramaterGroup=hogehoge
aws rds \
 describe-db-parameters \
 --db-parameter-group-name ${PramaterGroup} \
 | jq -r '.Parameters[] | "\(.ParameterName), \(.ParameterValue), \(.AllowedValues), \(.IsModifiable), \(.Source), \(.ApplyType), \(.DataType), \(.Description)"' \
 > rds_parameters.csv

ヘッダ

名前, 値, 許可された値, 変更可能, 送信元, 適用タイプ, データ型, 説明

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