Skip to content

Instantly share code, notes, and snippets.

@bashtoni
Created October 12, 2023 23:08
Show Gist options
  • Save bashtoni/419c4e96c7f212bddbf6362a665e28ad to your computer and use it in GitHub Desktop.
Save bashtoni/419c4e96c7f212bddbf6362a665e28ad to your computer and use it in GitHub Desktop.
Show all settings in an RDS parameter group which have been changed from the default
aws rds describe-db-cluster-parameters \
--db-cluster-parameter-group-name $PARAMETER_GROUP_NAME \
--query 'Parameters[].{ParameterName:ParameterName,DataType:DataType,Source:Source,Description:Description,ParameterValue:ParameterValue} | [?Source == `user`]'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment