Skip to content

Instantly share code, notes, and snippets.

@2matzzz
Last active November 23, 2015 11:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 2matzzz/93a02923cd5bd4e208f4 to your computer and use it in GitHub Desktop.
Save 2matzzz/93a02923cd5bd4e208f4 to your computer and use it in GitHub Desktop.
ELB policy list which "Server Order Preference" is enabled
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