Blog

ClusterNest Managed OpenSearch now with SSO

We are excited to announce the availability of Single Sign-On (SSO) for ClusterNest Managed OpenSearch! With support for both SAML and OIDC, you can now seamlessly integrate your identity provider to manage access to your OpenSearch clusters.

Key Features

  • SAML Support: Integrate with enterprise identity providers like Okta, Azure AD, and more.
  • OIDC Support: Use modern authentication protocols for secure and scalable access.
  • Centralized Access Management: Simplify user management by leveraging your existing identity infrastructure.

Benefits

  • Enhanced security with centralized authentication.
  • Improved user experience with seamless login.
  • Reduced administrative overhead for managing user access.

Pricing?

Zero. Support for both SAML & OIDC is available at no extra charge. We beleive in a world free of the SSO tax

Getting Started

To enable SSO for your OpenSearch clusters, use our Terraform Provider.

SAML

resource "clusternest_opensearch" "saml" {
  name            = "saml-cluster"
  tier            = "standard"
  organization_id = 1
  auth_type       = "saml"
  saml_config     = {
    idp_metadata_url = "https://auth.awesome-enterprise.com/application/saml/open-search-saml/metadata/"
    idp_entity_id = "open-search-saml"
    sp_entity_id = "open-search-saml"
  }

  opensearch_dashboards_custom_hostname = "opensearch-dashboards.awesome-enterprise.com"
}

OIDC

resource "clusternest_opensearch" "oidc" {
  name            = "oidc-cluster"
  tier            = "standard"
  organization_id = 1
  auth_type       = "oidc"
  oidc_config     = {
    connect_url = "https://auth.awesome-enterprise.com/application/o/opensearch/.well-known/openid-configuration"
    client_id = var.oidc_client_id
    client_secret = var.oidc_client_secret
  }

  opensearch_dashboards_custom_hostname = "opensearch-dashboards.awesome-enterprise.com"
}

Refer to our terraform documentation for the full list of supported attributes or the OpenSearch docs for SAML and OIDC for more details.

If you need assistance, feel free to contact our team [email protected].

Experience the power of secure and simplified access management with ClusterNest Managed OpenSearch today!