Skip to content

Instantly share code, notes, and snippets.

@dgulinobw
Created May 19, 2018 15:22
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 dgulinobw/086c4e399bd62f92e480c3ee2d64f3ec to your computer and use it in GitHub Desktop.
Save dgulinobw/086c4e399bd62f92e480c3ee2d64f3ec to your computer and use it in GitHub Desktop.
list AWS R53 healthcheck id and name in two columns
#!/bin/bash
aws route53 list-health-checks | jq -r '["ID","FQDN"], ["--","---"], (.[][] | [.Id, .HealthCheckConfig.FullyQualifiedDomainName]) | @tsv'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment