The TXT registry¶
The TXT registry is the default registry.
It stores DNS record metadata in TXT records, using the same provider.
Prefixes and Suffixes¶
In order to avoid having the registry TXT records collide with
TXT or CNAME records created from sources, you can configure a fixed prefix or suffix
to be added to the first component of the domain of all registry TXT records.
The prefix or suffix may not be changed after initial deployment,
lest the registry records be orphaned and the metadata be lost.
The prefix or suffix may contain the substring %{record_type}
, which is replaced with
the record type of the DNS record for which it is storing metadata.
The prefix is specified using the --txt-prefix
flag and the suffix is specified using
the --txt-suffix
flag. The two flags are mutually exclusive.
Wildcard Replacement¶
The --txt-wildcard-replacement
flag specifies a string to use to replace the “*” in
registry TXT records for wildcard domains. Without using this, registry TXT records for
wildcard domains will have invalid domain syntax and be rejected by most providers.
Encryption¶
Registry TXT records may contain information, such as the internal ingress name or namespace, considered sensitive, , which attackers could exploit to gather information about your infrastructure.
By encrypting TXT records, you can protect this information from unauthorized access.
Encryption is enabled by using the --txt-encrypt-enabled
flag. The 32-byte AES-256-GCM encryption
key must be specified in URL-safe base64 form, using the --txt-encrypt-aes-key
flag.
Note that the key used for encryption should be a secure key and properly managed to ensure the security of your TXT records.
Generating the TXT Encryption Key¶
Python
Bash
OpenSSL
PowerShell
# Add System.Web assembly to session, just in case
Add-Type -AssemblyName System.Web
[Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes([System.Web.Security.Membership]::GeneratePassword(32,4))).Replace("+","-").Replace("/","_")
Terraform
Manually Encrypting/Decrypting TXT Records¶
In some cases you might need to edit registry TXT records. The following example Go code encrypts and decrypts such records.
package main
import (
"fmt"
"sigs.k8s.io/external-dns/endpoint"
)
func main() {
key := []byte("testtesttesttesttesttesttesttest")
encrypted, _ := endpoint.EncryptText(
"heritage=external-dns,external-dns/owner=example,external-dns/resource=ingress/default/example",
key,
nil,
)
decrypted, _, _ := endpoint.DecryptText(encrypted, key)
fmt.Println(decrypted)
}
Caching¶
The TXT registry can optionally cache DNS records read from the provider. This can mitigate
rate limits imposed by the provider.
Caching is enabled by specifying a cache duration with the --txt-cache-interval
flag.