From 0973be58e0316c1406b4d26a6c31035b55a13cbf Mon Sep 17 00:00:00 2001 From: Mathew Heard Date: Tue, 18 Feb 2025 10:21:57 +1100 Subject: [PATCH] docs: Fix managed-record-type argument --- docs/registry/txt.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/registry/txt.md b/docs/registry/txt.md index dd34556cb..815c7c3b3 100644 --- a/docs/registry/txt.md +++ b/docs/registry/txt.md @@ -21,10 +21,10 @@ Example: ```sh # Default behavior - creates both formats -external-dns --provider=aws --source=ingress --managed-record-types=A,TXT +external-dns --provider=aws --source=ingress --managed-record-types=A --managed-record-types=TXT # Only create new format records (alongside other required flags) -external-dns --provider=aws --source=ingress --managed-record-types=A,TXT --txt-new-format-only +external-dns --provider=aws --source=ingress --managed-record-types=A --managed-record-types=TXT --txt-new-format-only ``` The `--txt-new-format-only` flag should be used in addition to your existing external-dns configuration flags. It does not implicitly configure TXT record handling - you still need to specify `--managed-record-types=TXT` if you want external-dns to manage TXT records.