Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions content/docs/configuration/acme/dns01/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,19 @@ _acme-challenge.bar.example.com IN CNAME _acme-challenge.less-privileged.example
With this configuration cert-manager will follow CNAME records recursively in order to determine
which DNS zone to update during DNS01 challenges.

> ⚠️ With `cnameStrategy: Follow`, cert-manager follows *any* CNAME record
> found at `_acme-challenge.<domain>`, including one synthesized by a
> wildcard record. For example, a record like
> `*.example.com IN CNAME lb.example.org` also answers CNAME queries for
> `_acme-challenge.example.com`, so cert-manager will try to create the
> challenge TXT record at `lb.example.org` — typically failing with an error
> such as Route 53's
> `RRSet with DNS name lb.example.org. is not permitted in zone example.com.`.
> To avoid this, create an explicit record at `_acme-challenge.<domain>`
> (an exact-match name prevents wildcard synthesis), or use the default
> `cnameStrategy: None` if you are not delegating challenges to another
> zone.


## Supported DNS01 providers

Expand Down