Globally disable email auth
Hey team I have all of my users logging in through sso - they each have their own because they have their own idps - how can I disable email verification? see below for an explaination of my use case
mermaid
flowchart LR
subgraph User_Side["User-Managed Side"]
IdP["User's IdP<br/>(Okta, Azure AD, Authentik, etc.)"]
CloudflarePersonal["User's Personal<br/>Cloudflare Zero Trust Account"]
end
subgraph Federation_Broker["Federation Broker Side"]
CF_Federation["Federation Broker<br/>Cloudflare Access Account"]
App["Destination Application or Resource"]
end
IdP --> CloudflarePersonal
CloudflarePersonal --> CF_Federation
CF_Federation --> App
classDef light fill:#f9f,stroke:#333,stroke-width:1px;
classDef blue fill:#ccf,stroke:#333,stroke-width:1px;
classDef green fill:#cfc,stroke:#333,stroke-width:1px;
class IdP light
class CloudflarePersonal blue
class CF_Federation blue
class App green
``````
mermaid
flowchart LR
subgraph User_Side["User-Managed Side"]
IdP["User's IdP<br/>(Okta, Azure AD, Authentik, etc.)"]
CloudflarePersonal["User's Personal<br/>Cloudflare Zero Trust Account"]
end
subgraph Federation_Broker["Federation Broker Side"]
CF_Federation["Federation Broker<br/>Cloudflare Access Account"]
App["Destination Application or Resource"]
end
IdP --> CloudflarePersonal
CloudflarePersonal --> CF_Federation
CF_Federation --> App
classDef light fill:#f9f,stroke:#333,stroke-width:1px;
classDef blue fill:#ccf,stroke:#333,stroke-width:1px;
classDef green fill:#cfc,stroke:#333,stroke-width:1px;
class IdP light
class CloudflarePersonal blue
class CF_Federation blue
class App green
``````
