[AWS] RDS のパラメータを jq 使って csv で取得
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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