Created
March 9, 2020 21:09
-
-
Save afeld/f50df6f500d906d61d8f12863c3d58b9 to your computer and use it in GitHub Desktop.
Revisions
-
afeld created this gist
Mar 9, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ #!/bin/bash set -eo pipefail aws route53 list-hosted-zones --query 'HostedZones[].Id' | \ jq -r '.[]' | sed 's/\/hostedzone\///' \ | \ xargs -I zone_id \ aws route53 list-resource-record-sets \ --hosted-zone-id zone_id \ --query "ResourceRecordSets[?Type == 'A' || Type == 'AAAA' || Type == 'CNAME'].Name" | \ jq -r '.[]' \ | \ sed -E 's/^www\.|\.$//' | egrep -v '_domainkey|\w{30,}' | sort -u