6 ms·
Exactly right. I use jq to mangle get/list requests from AWS (and others) and then recursively hit each element for whatever reason. Without jq none of my work
by GhettoMaestro 7y ago
Exactly right.
I use jq to mangle get/list requests from AWS (and others) and then recursively hit each element for whatever reason. Without jq none of my workflows in this area would be remotely easy.
TLDR: Learn JQ! It is like sed and grep, but for JSON.
- wsgeek 7y ago100%
- dastx 7y agoIf you're using AWS you're better using the built in option available for the cli. The --query option (and often combined with the --output option) does this, and uses JMESPath. Especially when you're scripting, it eliminates the need for having yet another tool.
- smitty1e 7y agoThat's a great point. Leverage --query for good justice. Unless you need some additional juice, where jq supports actually transforming the return. Quite arguably a heavier tool, e.g. a boto3 script becomes appropriate where --query falls short. But options are a great thing to have.
- dragonwriter 7y ago> If you're using AWS you're better using the built in option available for the cli. The --query option (and often combined with the --output option) does this, and uses JMESPath. Jq is so much more capable than jmespath that I find myself using jq on the json output of AWS CLI commands more than using the built-in query option. Sure, it requires another tool, but it’a often the best tool for the job.