> For the complete documentation index, see [llms.txt](https://docs.stepsecurity.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.stepsecurity.io/administration/admin-console/access-control/security-and-auth/setting-up-auth0-sso.md).

# Setting up Auth0 SSO

This document outlines the steps required to set up Auth0 SSO with StepSecurity.

#### Step 1: Access Auth0 Dashboard

* Log in to your Auth0 Dashboard at <https://manage.auth0.com&#x20>;
* Navigate to Applications → Applications from the left sidebar

#### Step 2: Create a New Application

* Click Create Application
* Name the application: StepSecurity&#x20;
* Select Regular Web Applications as the application type
* Click Create

<figure><img src="/files/9Yp9ZeuWWqTY9FDCokVa" alt=""><figcaption></figcaption></figure>

#### Step 3: Configure SAML2 Web App Addon

* After creating the application, navigate to the Addons tab
* Enable the SAML2 Web App addon by clicking on it

<figure><img src="/files/PjncLX4OPOWMKI8u6G0q" alt=""><figcaption></figcaption></figure>

#### Step 4: Configure SAML Settings

* In the SAML2 Web App settings dialog, configure the following:
* **Application Callback URL:** `https://login.app.stepsecurity.io/saml2/idpresponse`
* **Settings JSON Configuration:**

```yaml
{
  "audience": "urn:amazon:cognito:sp:us-west-2_PGbAJDNzx",
  "recipient": "https://login.app.stepsecurity.io/saml2/idpresponse",
  "mappings": {
    "email": "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress",
    "name": "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name",
    "Groups": "http://schemas.xmlsoap.org/claims/Group"
  },
  "createUpnClaim": false,
  "passthroughClaimsWithNoMapping": false,
  "mapUnknownClaimsAsIs": false,
  "mapIdentities": true,
  "signatureAlgorithm": "rsa-sha256",
  "digestAlgorithm": "sha256",
  "nameIdentifierFormat": "urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress",
  "nameIdentifierProbes": [
    "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress"
  ]
}

```

#### Step 5: Share Application Metadata URL with StepSecurity

* Share the highlighted URL with the StepSecurity team.

<figure><img src="/files/IoM4qootuqcBMAaQCM4M" alt=""><figcaption></figcaption></figure>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.stepsecurity.io/administration/admin-console/access-control/security-and-auth/setting-up-auth0-sso.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
