Created
October 6, 2017 20:21
-
-
Save gordonmurray/ca5c957e598f39e198860f39969edf8e to your computer and use it in GitHub Desktop.
List your aws elasticache parameter groups and show their existing parameters
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
# list your aws elasticache parameter groups | |
aws elasticache describe-cache-parameter-groups --profile=xxxxx --region=us-east-1 | |
# list the parameters currently set in a particular aws elasticache parameter groups | |
aws elasticache describe-cache-parameters --profile=xxxxx --region=us-east-1 --cache-parameter-group-name=xxxxx > xxxxx.json |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment