Created
October 12, 2023 23:08
-
-
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
This file contains hidden or 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-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