From a1330690419533af5d6147efd6cde48e0a6ec7c2 Mon Sep 17 00:00:00 2001 From: Yuri Slobodyanyuk Date: Tue, 11 Oct 2022 13:00:30 +0300 Subject: [PATCH] aws-route53: add page (#8606) --- pages/common/aws-route53.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages/common/aws-route53.md diff --git a/pages/common/aws-route53.md b/pages/common/aws-route53.md new file mode 100644 index 0000000000000..6f3927ea91ebc --- /dev/null +++ b/pages/common/aws-route53.md @@ -0,0 +1,24 @@ +# aws route53 + +> CLI for AWS Route53 - Route 53 is a highly available and scalable Domain Name System (DNS) web service. +> More information: . + +- List all hosted zones, private and public: + +`aws route53 list-hosted-zones` + +- Show all records in a zone: + +`aws route53 list-resource-record-sets --hosted-zone-id {{zone_id}}` + +- Create a new, public zone using a request identifier to retry the operation safely: + +`aws route53 create-hosted-zone --name {{name}} --caller-reference {{request_identifier}}` + +- Delete a zone (if the zone has non-defaults SOA and NS records the command will fail): + +`aws route53 delete-hosted-zone --id {{zone_id}}` + +- Test DNS resolving by Amazon servers of a given zone: + +`aws route53 test-dns-answer --hosted-zone-id {{zone_id}} --record-name {{name}} --record-type {{type}}`