|
|
|
|
|
by wonginator1221
2290 days ago
|
|
Nice! I struggled to learn jq initially and I made a similar page for my team. One suggestion is to use with_entries as a replacement for the 'to_entries | map(...) | from_entries' pattern. For example: jq '.metadata.annotations | with_entries(select(.key == "label1"))'
is equivalent to jq '.metadata.annotations | to_entries | map(select(.key == "label1")) | from_entries'
|
|
from_entries handles nicely the Tags in a lot of awscli output, you can do things like
to get a summary of all your instances sorted by role.