You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: Add more examples of correctly placed DNS TXT record for SSO setup (#25587)
## Context / Background
Dashboard SSO setup recently got way easier. The DNS TXT record strategy
for quickly verifying that someone has administrative control over a
particular domain name works great.
But, there has been a small bit of confusion about how to correctly
configure the DNS TXT record, so this change is just adding a section
that will help users check their own work and ensure the TXT record was
correctly placed.
## In this PR
- Updated `dash-sso-apps.mdx` to add a guide to run a test and see if
the DNS record was correctly placed.
Copy the verification code (for example `cloudflare_dashboard_sso=1111111`) and create a TXT record in your DNS configuration with that value. Cloudflare will automatically poll that DNS record until it is found or a timeout is reached within two days.
71
+
Copy the verification code (for example `cloudflare_dashboard_sso=1111111`) and create a `TXT` record in your DNS configuration with that value. To test that the DNS record was correctly configured, you can use the `dig` command to query your email domain:
72
72
73
-
If verification fails due to timeout, you may manually reinitiate the polling by running the following command:
73
+
```sh
74
+
dig cool.cats TXT +short
75
+
```
76
+
```sh output
77
+
"cloudflare_dashboard_sso=111111111"
78
+
```
79
+
80
+
The `TXT` record must include the `cloudflared_dashboard_sso=` prefix along with the numerical code.
81
+
82
+
Cloudflare will automatically poll this DNS record until it is found or a timeout is reached within two days. If verification fails due to timeout, you may manually reinitiate the polling by running the following command:
0 commit comments