From 60a2083921e90c10247e84a40f91f71aaa1c9a99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dirk=20Go=CC=81mez?= Date: Fri, 22 Feb 2019 20:52:50 +0100 Subject: [PATCH] Clarify that hosted zone identifier is to be used --- docs/tutorials/aws.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/tutorials/aws.md b/docs/tutorials/aws.md index 7056de801..5be840fd2 100644 --- a/docs/tutorials/aws.md +++ b/docs/tutorials/aws.md @@ -44,7 +44,7 @@ $ aws route53 create-hosted-zone --name "external-dns-test.my-org.com." --caller ``` -Make a note of the ID of the hosted zone you just created. +Make a note of the ID of the hosted zone you just created, which will serve as the value for my-hostedzone-identifier. ```console $ aws route53 list-hosted-zones-by-name --output json --dns-name "external-dns-test.my-org.com." | jq -r '.HostedZones[0].Id' @@ -92,7 +92,7 @@ spec: - --policy=upsert-only # would prevent ExternalDNS from deleting any records, omit to enable full synchronization - --aws-zone-type=public # only look at public hosted zones (valid values are public, private or no value for both) - --registry=txt - - --txt-owner-id=my-identifier + - --txt-owner-id=my-hostedzone-identifier ``` ### Manifest (for clusters with RBAC enabled) @@ -158,7 +158,7 @@ spec: - --policy=upsert-only # would prevent ExternalDNS from deleting any records, omit to enable full synchronization - --aws-zone-type=public # only look at public hosted zones (valid values are public, private or no value for both) - --registry=txt - - --txt-owner-id=my-identifier + - --txt-owner-id=my-hostedzone-identifier ``` @@ -264,7 +264,7 @@ $ aws route53 list-resource-record-sets --output json --hosted-zone-id "/hostedz "TTL": 300, "ResourceRecords": [ { - "Value": "\"heritage=external-dns,external-dns/owner=my-identifier\"" + "Value": "\"heritage=external-dns,external-dns/owner=my-hostedzone-identifier\"" } ], "Type": "TXT"