Skip to content

Instantly share code, notes, and snippets.

@wokamoto
Created January 28, 2016 08:47
Embed
What would you like to do?
[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