Last active
November 23, 2015 11:53
-
-
Save 2matzzz/93a02923cd5bd4e208f4 to your computer and use it in GitHub Desktop.
ELB policy list which "Server Order Preference" is enabled
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 elb describe-load-balancer-policies | jq '[ | |
.PolicyDescriptions[]| | |
{ | |
"PolicyName": .PolicyName, | |
"PolicyAttributeDescriptions": .PolicyAttributeDescriptions[]| | |
select(.AttributeName == "Server-Defined-Cipher-Order" and .AttributeValue == "true") | |
} | |
]' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment