Jq Notes: Difference between revisions

From Federal Burro of Information
Jump to navigationJump to search
No edit summary
No edit summary
Line 9: Line 9:


  azure location list --json | jq '.[] | .name  | join(", ")'
  azure location list --json | jq '.[] | .name  | join(", ")'
== Also See ==
* [[AWS Notes]]

Revision as of 18:27, 13 November 2017


Selecting name from tags:

aws ec2 describe-instances | jq '.Reservations[].Instances[] | select(.LaunchTime > "2015-01-28") | select(.State.Code != 48) | [(.Tags[]|select(.Key=="Name")|.Value),.LaunchTime, .State.Name] | join(", ")'


to CSV (join on the end ):

azure location list --json | jq '.[] | .name  | join(", ")'

Also See