79242336

Date: 2024-12-01 19:34:49
Score: 0.5
Natty:
Report link

When there are multiple zones with the same name, you can drill down to a specific zone by filtering your results. E.g.

aws route53 list-hosted-zones-by-name \
--profile "myprofile" \
--output text \
--query "HostedZones[?(Config.PrivateZone==`true` && Name==`example.com.`)].Id"

This should output something like

/hostedzone/ABCDEF12345678
Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): When the
  • Low reputation (0.5):
Posted by: Jim Walker