Listing Identity Providers

You may want to know what are all identity providers for your organization, what their display named and display logos are, and whether they are enabled or disabled.

You can find this information both on the Border0 Portal and the Border0 CLI.

Portal Instructions

To view the list of identity providers for your organization on the Border0 Portal:

  • [1] Select "Organization Settings" from the Border0 menu (left-side pane) on the Portal
  • [2] Select "Identity Providers" from the Organization Settings page
1896

Navigation steps for the identity providers page on the Border0 Portal

CLI Instructions

The list of all identity providers (global and custom) can be displayed with the CLI command border0 organization idp list

Example

$ border0 organization idp list

Global:
+-----------+---------+
| NAME      | ENABLED |
+-----------+---------+
| Google    | false   |
| GitHub    | false   |
| Microsoft | false   |
+-----------+---------+

Custom:
+--------------------+---------------------+------------------+---------+
| NAME               | DISPLAYNAME         | TYPE             | ENABLED |
+--------------------+---------------------+------------------+---------+
| Okta-Free-Trial    | Okta Free Trial     | okta-workforce   | true    |
| MyCompanyAuthV2    | MyCompany Auth      | oidc             | true    |
| MyCompanyAuth      | MyCompany Auth      | saml             | false   |
| ParentCompanyAuth  | Parent Company Auth | google-workspace | false   |
+--------------------+---------------------+------------------+---------+

Example (With JSON Output)

$ border0 organization idp list --json | jq
{
  "list": [
    {
      "name": "Google",
      "display_name": "Google",
      "type": "global",
      "enabled": false,
      "logo_url": "https://download.border0.com/static/idp_logos/google.png"
    },
    {
      "name": "GitHub",
      "display_name": "GitHub",
      "type": "global",
      "enabled": false,
      "logo_url": "https://download.border0.com/static/idp_logos/github.png"
    },
    {
      "name": "Microsoft",
      "display_name": "Microsoft",
      "type": "global",
      "enabled": false,
      "logo_url": "https://download.border0.com/static/idp_logos/microsoft.png"
    },
    {
      "name": "Okta-Free-Trial",
      "display_name": "Okta Free Trial",
      "type": "okta-workforce",
      "enabled": true,
      "logo_url": "https://download.border0.com/static/idp_logos/okta-workforce.png"
    },
    {
      "name": "MyCompanyAuthV2",
      "display_name": "MyCompany Auth",
      "type": "oidc",
      "enabled": true,
      "logo_url": "https://avatars.githubusercontent.com/u/114622326"
    },
    {
      "name": "MyCompanyAuth",
      "display_name": "MyCompany Auth",
      "type": "saml",
      "enabled": false,
      "logo_url": "https://avatars.githubusercontent.com/u/114622326"
    },
    {
      "name": "ParentCompanyAuth",
      "display_name": "Parent Company Auth",
      "type": "google-workspace",
      "enabled": false,
      "logo_url": "https://download.border0.com/static/idp_logos/google-workspace.png"
    }
  ]
}