LoginSignup
3
6

More than 5 years have passed since last update.

[AWS] RDS のパラメータグループに設定されてる値を CSV として保存

Posted at

管理資料にのせたいときとかに RDS のパラメータグループに設定されている値を CSV 化したい時ってあるよね。
そんな時は jq を使えば簡単。

$ aws rds \
 describe-db-parameters \
 --db-parameter-group-name {PARAMETER-GROUP-NAME-HERE} \
 | jq -r '.Parameters[] | "\(.ParameterName), \(.ParameterValue)"' \
 > rds_parameters.csv
3
6
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
6