> ## Documentation Index
> Fetch the complete documentation index at: https://docs.openops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# SSO Authentication

> How to enable SSO Authentication in your environment

export const NarrowImage = ({src, alt, widthPercent}) => {
  const className = `narrow-image-${useId().replace(/:/g, '-')}`;
  const widthRule = widthPercent ? `width: ${widthPercent}%;` : '';
  return <>
      <style>{`
        .${className} {
          max-width: 75%;
          ${widthRule}
        }
        @media (max-width: 768px) {
          .${className} {
            max-width: 100%;
            width: auto;
          }
        }
      `}</style>

      <img className={className} src={src} alt={alt} />
    </>;
};

<Info>
  **Single Sign-On (SSO)** is an Enterprise edition feature. See [pricing](https://www.openops.com/pricing/) for details.
</Info>

Community and Professional editions include a basic authentication system. The Enterprise edition lets you integrate OpenOps platform with your identity provider using SAML or OIDC.

<img src="https://mintcdn.com/openops-ecb4f397/SInLgn5oYPMpPCfk/images/paid/sso-sign-in.png?fit=max&auto=format&n=SInLgn5oYPMpPCfk&q=85&s=33ee1540471ab7bd79ed91d1343f935d" alt="SSO Sign-in page" style={{ maxWidth: '400px', width: '100%', margin: '0 auto', display: 'block' }} width="1106" height="1100" data-path="images/paid/sso-sign-in.png" />

In larger organizations, this enables centralized identity and access management, allowing IT and security teams to enforce authentication policies, manage user access through existing identity providers, and streamline onboarding and offboarding.

## Enable SSO for your environment

OpenOps supports Single Sign-On (SSO) through two authentication methods:

* **SAML**
* **OIDC (OpenID Connect)**

To learn more or to enable SSO for your environment, please contact your OpenOps account manager.
