Skip to content

Instantly share code, notes, and snippets.

@conzy
Created October 21, 2019 13:22
Show Gist options
  • Save conzy/0ce6a7bf64c7b4d12ff485a47a634c26 to your computer and use it in GitHub Desktop.
Save conzy/0ce6a7bf64c7b4d12ff485a47a634c26 to your computer and use it in GitHub Desktop.
Find all parameters in an RDS parameter group that have been modified. aws cli + jq
aws rds describe-db-cluster-parameters \
--db-cluster-parameter-group-name your-parameter-group | \
jq '.Parameters[] | select(.Source == "user")'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment