Skip to content

Instantly share code, notes, and snippets.

@wokamoto
Created January 28, 2016 08:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wokamoto/b559a28a24452012feea to your computer and use it in GitHub Desktop.
Save wokamoto/b559a28a24452012feea to your computer and use it in GitHub Desktop.
[AWS] RDS のパラメータを jq 使って csv で取得
aws rds describe-db-parameters --db-parameter-group-name {PARAMETER-GROUP-NAME-HERE}
| jq -r '.Parameters[] | "\(.ParameterName), \(.ParameterValue)"' \
> rds_parameters.csv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment