[ Web Proxy ]
URL:
Viewing: https://developers.cloudflare.com/learning-paths/clientless-access/initial-setup/configure-idp/ [Back]  [Original]

Configure an identity provider (recommended) Cloudflare Learning PathsSkip to content
SearchCtrlKLog in
  1. Home
  2. /Learning Paths
  3. /
    Clientless Access
  4. /Initial setup
  5. /Configure an identity provider (recommended)

Configure an identity provider (recommended)

Last updated Apr 23, 2026Copy as MarkdownView as MarkdownAgent setup

An identity provider (IdP) stores and manages users' digital identities. You can integrate your existing identity provider with Cloudflare Zero Trust in order to manage user access to your private network. This requires configuration both in Cloudflare and with the identity provider itself.

Note

Some admins choose to test by authenticating with a one-time PIN (OTP) instead of an IdP. OTP can also be used as an alternative login method for contractors or other guests that are not part of your IdP.

To add an identity provider:

  1. In the Cloudflare dashboard , go to Zero Trust > Integrations > Identity providers.

  2. In the Your identity providers card, select Add new identity provider.

  3. Select the identity provider you want to add.

    If you do not see your identity provider listed, these providers can typically still be enabled. If they support OIDC or OAuth, select the generic OIDC option. If they support SAML, select the generic SAML option. Cloudflare supports all SAML and OIDC providers and can integrate with the majority of OAuth providers. If your provider supports both SAML and OIDC, we recommend OIDC for ease of configuration.

  4. Fill in the necessary fields to set up your identity provider.

    Each identity provider will have different required fields for you to fill in. Step-by-step instructions are shown in the dashboard side panel. Alternatively, refer to the IdP-specific documentation.

  5. Once you have filled in the necessary fields, select Save.

  1. Add the following permission to your cloudflare_api_token :

    • Access: Organizations, Identity Providers, and Groups Write
  2. Add an identity provider to Cloudflare One using the cloudflare_zero_trust_access_identity_provider resource. For example, to add a Microsoft Entra ID integration:

    resource "cloudflare_zero_trust_access_identity_provider" "microsoft_entra_id" {
    	account_id = var.cloudflare_account_id
    	name       = "Entra ID example"
    	type       = "azureAD"
    	config 		 = {
    		client_id                  = var.entra_id_client_id
    		client_secret              = var.entra_id_client_secret
    		directory_id               = var.entra_id_directory_id
    		support_groups             = true
    		}
    }

    Each identity provider integration has different required attributes. You will need to obtain these attribute values from your identity provider. For more information, refer to the IdP-specific documentation.

    If you do not see your identity provider listed, these providers can typically still be enabled. If they support OIDC or OAuth, use the generic OIDC option. If they support SAML, use the generic SAML option. Cloudflare supports all SAML and OIDC providers and can integrate with the majority of OAuth providers. If your provider supports both SAML and OIDC, we recommend OIDC for ease of configuration.

Users will now be able to select this IdP when they are prompted to authenticate.

PreviousCreate a Zero Trust organizationNextOverview

Was this helpful?

YesNo
Edit pageReport issue
[]

Web Proxy Viewer  |  New URL  |  Original Page