1. Packages
  2. MongoDB Atlas
  3. API Docs
  4. getFederatedSettingsIdentityProvider
MongoDB Atlas v3.14.3 published on Monday, Apr 1, 2024 by Pulumi

mongodbatlas.getFederatedSettingsIdentityProvider

Explore with Pulumi AI

mongodbatlas logo
MongoDB Atlas v3.14.3 published on Monday, Apr 1, 2024 by Pulumi

    mongodbatlas.FederatedSettingsIdentityProvider provides a federated settings identity provider data source. Atlas federated settings identity provider provides federated settings outputs for the configured identity provider.

    NOTE: OIDC Workforce IdP is currently in preview. To learn more about OIDC and existing limitations see the OIDC Authentication Documentation

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as mongodbatlas from "@pulumi/mongodbatlas";
    
    const identityProvider = new mongodbatlas.FederatedSettingsIdentityProvider("identityProvider", {
        federationSettingsId: "627a9687f7f7f7f774de306f14",
        associatedDomains: ["yourdomain.com"],
        ssoDebugEnabled: true,
        status: "ACTIVE",
        ssoUrl: "https://mysso.oktapreview.com/app/mysso_terraformtest_1/exk177f7f7f70h8/sso/saml",
        issuerUri: "http://www.okta.com/exk17f7f7f7f7p50h8",
        requestBinding: "HTTP-POST",
        responseSignatureAlgorithm: "SHA-256",
    });
    const identityProviderDs = mongodbatlas.getFederatedSettingsIdentityProviderOutput({
        federationSettingsId: identityProvider.id,
        identityProviderId: "0oad47f7fXnk1297",
    });
    
    import pulumi
    import pulumi_mongodbatlas as mongodbatlas
    
    identity_provider = mongodbatlas.FederatedSettingsIdentityProvider("identityProvider",
        federation_settings_id="627a9687f7f7f7f774de306f14",
        associated_domains=["yourdomain.com"],
        sso_debug_enabled=True,
        status="ACTIVE",
        sso_url="https://mysso.oktapreview.com/app/mysso_terraformtest_1/exk177f7f7f70h8/sso/saml",
        issuer_uri="http://www.okta.com/exk17f7f7f7f7p50h8",
        request_binding="HTTP-POST",
        response_signature_algorithm="SHA-256")
    identity_provider_ds = mongodbatlas.get_federated_settings_identity_provider_output(federation_settings_id=identity_provider.id,
        identity_provider_id="0oad47f7fXnk1297")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-mongodbatlas/sdk/v3/go/mongodbatlas"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		identityProvider, err := mongodbatlas.NewFederatedSettingsIdentityProvider(ctx, "identityProvider", &mongodbatlas.FederatedSettingsIdentityProviderArgs{
    			FederationSettingsId: pulumi.String("627a9687f7f7f7f774de306f14"),
    			AssociatedDomains: pulumi.StringArray{
    				pulumi.String("yourdomain.com"),
    			},
    			SsoDebugEnabled:            pulumi.Bool(true),
    			Status:                     pulumi.String("ACTIVE"),
    			SsoUrl:                     pulumi.String("https://mysso.oktapreview.com/app/mysso_terraformtest_1/exk177f7f7f70h8/sso/saml"),
    			IssuerUri:                  pulumi.String("http://www.okta.com/exk17f7f7f7f7p50h8"),
    			RequestBinding:             pulumi.String("HTTP-POST"),
    			ResponseSignatureAlgorithm: pulumi.String("SHA-256"),
    		})
    		if err != nil {
    			return err
    		}
    		_ = mongodbatlas.LookupFederatedSettingsIdentityProviderOutput(ctx, mongodbatlas.GetFederatedSettingsIdentityProviderOutputArgs{
    			FederationSettingsId: identityProvider.ID(),
    			IdentityProviderId:   pulumi.String("0oad47f7fXnk1297"),
    		}, nil)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Mongodbatlas = Pulumi.Mongodbatlas;
    
    return await Deployment.RunAsync(() => 
    {
        var identityProvider = new Mongodbatlas.FederatedSettingsIdentityProvider("identityProvider", new()
        {
            FederationSettingsId = "627a9687f7f7f7f774de306f14",
            AssociatedDomains = new[]
            {
                "yourdomain.com",
            },
            SsoDebugEnabled = true,
            Status = "ACTIVE",
            SsoUrl = "https://mysso.oktapreview.com/app/mysso_terraformtest_1/exk177f7f7f70h8/sso/saml",
            IssuerUri = "http://www.okta.com/exk17f7f7f7f7p50h8",
            RequestBinding = "HTTP-POST",
            ResponseSignatureAlgorithm = "SHA-256",
        });
    
        var identityProviderDs = Mongodbatlas.GetFederatedSettingsIdentityProvider.Invoke(new()
        {
            FederationSettingsId = identityProvider.Id,
            IdentityProviderId = "0oad47f7fXnk1297",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.mongodbatlas.FederatedSettingsIdentityProvider;
    import com.pulumi.mongodbatlas.FederatedSettingsIdentityProviderArgs;
    import com.pulumi.mongodbatlas.MongodbatlasFunctions;
    import com.pulumi.mongodbatlas.inputs.GetFederatedSettingsIdentityProviderArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var identityProvider = new FederatedSettingsIdentityProvider("identityProvider", FederatedSettingsIdentityProviderArgs.builder()        
                .federationSettingsId("627a9687f7f7f7f774de306f14")
                .associatedDomains("yourdomain.com")
                .ssoDebugEnabled(true)
                .status("ACTIVE")
                .ssoUrl("https://mysso.oktapreview.com/app/mysso_terraformtest_1/exk177f7f7f70h8/sso/saml")
                .issuerUri("http://www.okta.com/exk17f7f7f7f7p50h8")
                .requestBinding("HTTP-POST")
                .responseSignatureAlgorithm("SHA-256")
                .build());
    
            final var identityProviderDs = MongodbatlasFunctions.getFederatedSettingsIdentityProvider(GetFederatedSettingsIdentityProviderArgs.builder()
                .federationSettingsId(identityProvider.id())
                .identityProviderId("0oad47f7fXnk1297")
                .build());
    
        }
    }
    
    resources:
      identityProvider:
        type: mongodbatlas:FederatedSettingsIdentityProvider
        properties:
          federationSettingsId: 627a9687f7f7f7f774de306f14
          associatedDomains:
            - yourdomain.com
          ssoDebugEnabled: true
          status: ACTIVE
          ssoUrl: https://mysso.oktapreview.com/app/mysso_terraformtest_1/exk177f7f7f70h8/sso/saml
          issuerUri: http://www.okta.com/exk17f7f7f7f7p50h8
          requestBinding: HTTP-POST
          responseSignatureAlgorithm: SHA-256
    variables:
      identityProviderDs:
        fn::invoke:
          Function: mongodbatlas:getFederatedSettingsIdentityProvider
          Arguments:
            federationSettingsId: ${identityProvider.id}
            identityProviderId: 0oad47f7fXnk1297
    

    Using getFederatedSettingsIdentityProvider

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getFederatedSettingsIdentityProvider(args: GetFederatedSettingsIdentityProviderArgs, opts?: InvokeOptions): Promise<GetFederatedSettingsIdentityProviderResult>
    function getFederatedSettingsIdentityProviderOutput(args: GetFederatedSettingsIdentityProviderOutputArgs, opts?: InvokeOptions): Output<GetFederatedSettingsIdentityProviderResult>
    def get_federated_settings_identity_provider(federation_settings_id: Optional[str] = None,
                                                 identity_provider_id: Optional[str] = None,
                                                 opts: Optional[InvokeOptions] = None) -> GetFederatedSettingsIdentityProviderResult
    def get_federated_settings_identity_provider_output(federation_settings_id: Optional[pulumi.Input[str]] = None,
                                                 identity_provider_id: Optional[pulumi.Input[str]] = None,
                                                 opts: Optional[InvokeOptions] = None) -> Output[GetFederatedSettingsIdentityProviderResult]
    func LookupFederatedSettingsIdentityProvider(ctx *Context, args *LookupFederatedSettingsIdentityProviderArgs, opts ...InvokeOption) (*LookupFederatedSettingsIdentityProviderResult, error)
    func LookupFederatedSettingsIdentityProviderOutput(ctx *Context, args *LookupFederatedSettingsIdentityProviderOutputArgs, opts ...InvokeOption) LookupFederatedSettingsIdentityProviderResultOutput

    > Note: This function is named LookupFederatedSettingsIdentityProvider in the Go SDK.

    public static class GetFederatedSettingsIdentityProvider 
    {
        public static Task<GetFederatedSettingsIdentityProviderResult> InvokeAsync(GetFederatedSettingsIdentityProviderArgs args, InvokeOptions? opts = null)
        public static Output<GetFederatedSettingsIdentityProviderResult> Invoke(GetFederatedSettingsIdentityProviderInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetFederatedSettingsIdentityProviderResult> getFederatedSettingsIdentityProvider(GetFederatedSettingsIdentityProviderArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: mongodbatlas:index/getFederatedSettingsIdentityProvider:getFederatedSettingsIdentityProvider
      arguments:
        # arguments dictionary

    The following arguments are supported:

    FederationSettingsId string
    Unique 24-hexadecimal digit string that identifies the federated authentication configuration.
    IdentityProviderId string
    FederationSettingsId string
    Unique 24-hexadecimal digit string that identifies the federated authentication configuration.
    IdentityProviderId string
    federationSettingsId String
    Unique 24-hexadecimal digit string that identifies the federated authentication configuration.
    identityProviderId String
    federationSettingsId string
    Unique 24-hexadecimal digit string that identifies the federated authentication configuration.
    identityProviderId string
    federation_settings_id str
    Unique 24-hexadecimal digit string that identifies the federated authentication configuration.
    identity_provider_id str
    federationSettingsId String
    Unique 24-hexadecimal digit string that identifies the federated authentication configuration.
    identityProviderId String

    getFederatedSettingsIdentityProvider Result

    The following output properties are available:

    AcsUrl string
    Assertion consumer service URL to which the IdP sends the SAML response.
    AssociatedDomains List<string>
    List that contains the configured domains from which users can log in for this IdP.
    AssociatedOrgs List<GetFederatedSettingsIdentityProviderAssociatedOrg>
    List that contains the organizations from which users can log in for this IdP.
    AudienceClaims List<string>
    Identifier of the intended recipient of the token.
    AudienceUri string
    Identifier for the intended audience of the SAML Assertion.
    ClientId string
    Client identifier that is assigned to an application by the Identity Provider.
    DisplayName string
    Human-readable label that identifies the IdP.
    FederationSettingsId string
    Unique 24-hexadecimal digit string that identifies the federated authentication configuration.
    GroupsClaim string
    Identifier of the claim which contains IdP Group IDs in the token.
    Id string
    The provider-assigned unique ID for this managed resource.
    IdentityProviderId string
    IdpId string
    Unique 24-hexadecimal digit string that identifies the IdP
    IssuerUri string
    Identifier for the issuer of the SAML Assertion.
    OktaIdpId string
    Unique 20-hexadecimal digit string that identifies the IdP.
    PemFileInfos List<GetFederatedSettingsIdentityProviderPemFileInfo>
    Protocol string
    The protocol of the identity provider. Either SAML or OIDC.
    RequestBinding string
    SAML Authentication Request Protocol binding used to send the AuthNRequest. Atlas supports the following binding values:

    • HTTP POST
    • HTTP REDIRECT
    RequestedScopes List<string>
    Scopes that MongoDB applications will request from the authorization endpoint.
    ResponseSignatureAlgorithm string
    Algorithm used to encrypt the IdP signature. Atlas supports the following signature algorithm values:

    • SHA-1
    • SHA-256
    SsoDebugEnabled bool
    Flag that indicates whether the IdP has enabled Bypass SAML Mode. Enabling this mode generates a URL that allows you bypass SAML and login to your organizations at any point. You can authenticate with this special URL only when Bypass Mode is enabled. Set this parameter to true during testing. This keeps you from getting locked out of MongoDB.
    SsoUrl string
    URL of the receiver of the SAML AuthNRequest.
    Status string
    Label that indicates whether the identity provider is active. The IdP is Inactive until you map at least one domain to the IdP.
    UserClaim string
    Identifier of the claim which contains the user ID in the token.
    AcsUrl string
    Assertion consumer service URL to which the IdP sends the SAML response.
    AssociatedDomains []string
    List that contains the configured domains from which users can log in for this IdP.
    AssociatedOrgs []GetFederatedSettingsIdentityProviderAssociatedOrg
    List that contains the organizations from which users can log in for this IdP.
    AudienceClaims []string
    Identifier of the intended recipient of the token.
    AudienceUri string
    Identifier for the intended audience of the SAML Assertion.
    ClientId string
    Client identifier that is assigned to an application by the Identity Provider.
    DisplayName string
    Human-readable label that identifies the IdP.
    FederationSettingsId string
    Unique 24-hexadecimal digit string that identifies the federated authentication configuration.
    GroupsClaim string
    Identifier of the claim which contains IdP Group IDs in the token.
    Id string
    The provider-assigned unique ID for this managed resource.
    IdentityProviderId string
    IdpId string
    Unique 24-hexadecimal digit string that identifies the IdP
    IssuerUri string
    Identifier for the issuer of the SAML Assertion.
    OktaIdpId string
    Unique 20-hexadecimal digit string that identifies the IdP.
    PemFileInfos []GetFederatedSettingsIdentityProviderPemFileInfo
    Protocol string
    The protocol of the identity provider. Either SAML or OIDC.
    RequestBinding string
    SAML Authentication Request Protocol binding used to send the AuthNRequest. Atlas supports the following binding values:

    • HTTP POST
    • HTTP REDIRECT
    RequestedScopes []string
    Scopes that MongoDB applications will request from the authorization endpoint.
    ResponseSignatureAlgorithm string
    Algorithm used to encrypt the IdP signature. Atlas supports the following signature algorithm values:

    • SHA-1
    • SHA-256
    SsoDebugEnabled bool
    Flag that indicates whether the IdP has enabled Bypass SAML Mode. Enabling this mode generates a URL that allows you bypass SAML and login to your organizations at any point. You can authenticate with this special URL only when Bypass Mode is enabled. Set this parameter to true during testing. This keeps you from getting locked out of MongoDB.
    SsoUrl string
    URL of the receiver of the SAML AuthNRequest.
    Status string
    Label that indicates whether the identity provider is active. The IdP is Inactive until you map at least one domain to the IdP.
    UserClaim string
    Identifier of the claim which contains the user ID in the token.
    acsUrl String
    Assertion consumer service URL to which the IdP sends the SAML response.
    associatedDomains List<String>
    List that contains the configured domains from which users can log in for this IdP.
    associatedOrgs List<GetFederatedSettingsIdentityProviderAssociatedOrg>
    List that contains the organizations from which users can log in for this IdP.
    audienceClaims List<String>
    Identifier of the intended recipient of the token.
    audienceUri String
    Identifier for the intended audience of the SAML Assertion.
    clientId String
    Client identifier that is assigned to an application by the Identity Provider.
    displayName String
    Human-readable label that identifies the IdP.
    federationSettingsId String
    Unique 24-hexadecimal digit string that identifies the federated authentication configuration.
    groupsClaim String
    Identifier of the claim which contains IdP Group IDs in the token.
    id String
    The provider-assigned unique ID for this managed resource.
    identityProviderId String
    idpId String
    Unique 24-hexadecimal digit string that identifies the IdP
    issuerUri String
    Identifier for the issuer of the SAML Assertion.
    oktaIdpId String
    Unique 20-hexadecimal digit string that identifies the IdP.
    pemFileInfos List<GetFederatedSettingsIdentityProviderPemFileInfo>
    protocol String
    The protocol of the identity provider. Either SAML or OIDC.
    requestBinding String
    SAML Authentication Request Protocol binding used to send the AuthNRequest. Atlas supports the following binding values:

    • HTTP POST
    • HTTP REDIRECT
    requestedScopes List<String>
    Scopes that MongoDB applications will request from the authorization endpoint.
    responseSignatureAlgorithm String
    Algorithm used to encrypt the IdP signature. Atlas supports the following signature algorithm values:

    • SHA-1
    • SHA-256
    ssoDebugEnabled Boolean
    Flag that indicates whether the IdP has enabled Bypass SAML Mode. Enabling this mode generates a URL that allows you bypass SAML and login to your organizations at any point. You can authenticate with this special URL only when Bypass Mode is enabled. Set this parameter to true during testing. This keeps you from getting locked out of MongoDB.
    ssoUrl String
    URL of the receiver of the SAML AuthNRequest.
    status String
    Label that indicates whether the identity provider is active. The IdP is Inactive until you map at least one domain to the IdP.
    userClaim String
    Identifier of the claim which contains the user ID in the token.
    acsUrl string
    Assertion consumer service URL to which the IdP sends the SAML response.
    associatedDomains string[]
    List that contains the configured domains from which users can log in for this IdP.
    associatedOrgs GetFederatedSettingsIdentityProviderAssociatedOrg[]
    List that contains the organizations from which users can log in for this IdP.
    audienceClaims string[]
    Identifier of the intended recipient of the token.
    audienceUri string
    Identifier for the intended audience of the SAML Assertion.
    clientId string
    Client identifier that is assigned to an application by the Identity Provider.
    displayName string
    Human-readable label that identifies the IdP.
    federationSettingsId string
    Unique 24-hexadecimal digit string that identifies the federated authentication configuration.
    groupsClaim string
    Identifier of the claim which contains IdP Group IDs in the token.
    id string
    The provider-assigned unique ID for this managed resource.
    identityProviderId string
    idpId string
    Unique 24-hexadecimal digit string that identifies the IdP
    issuerUri string
    Identifier for the issuer of the SAML Assertion.
    oktaIdpId string
    Unique 20-hexadecimal digit string that identifies the IdP.
    pemFileInfos GetFederatedSettingsIdentityProviderPemFileInfo[]
    protocol string
    The protocol of the identity provider. Either SAML or OIDC.
    requestBinding string
    SAML Authentication Request Protocol binding used to send the AuthNRequest. Atlas supports the following binding values:

    • HTTP POST
    • HTTP REDIRECT
    requestedScopes string[]
    Scopes that MongoDB applications will request from the authorization endpoint.
    responseSignatureAlgorithm string
    Algorithm used to encrypt the IdP signature. Atlas supports the following signature algorithm values:

    • SHA-1
    • SHA-256
    ssoDebugEnabled boolean
    Flag that indicates whether the IdP has enabled Bypass SAML Mode. Enabling this mode generates a URL that allows you bypass SAML and login to your organizations at any point. You can authenticate with this special URL only when Bypass Mode is enabled. Set this parameter to true during testing. This keeps you from getting locked out of MongoDB.
    ssoUrl string
    URL of the receiver of the SAML AuthNRequest.
    status string
    Label that indicates whether the identity provider is active. The IdP is Inactive until you map at least one domain to the IdP.
    userClaim string
    Identifier of the claim which contains the user ID in the token.
    acs_url str
    Assertion consumer service URL to which the IdP sends the SAML response.
    associated_domains Sequence[str]
    List that contains the configured domains from which users can log in for this IdP.
    associated_orgs Sequence[GetFederatedSettingsIdentityProviderAssociatedOrg]
    List that contains the organizations from which users can log in for this IdP.
    audience_claims Sequence[str]
    Identifier of the intended recipient of the token.
    audience_uri str
    Identifier for the intended audience of the SAML Assertion.
    client_id str
    Client identifier that is assigned to an application by the Identity Provider.
    display_name str
    Human-readable label that identifies the IdP.
    federation_settings_id str
    Unique 24-hexadecimal digit string that identifies the federated authentication configuration.
    groups_claim str
    Identifier of the claim which contains IdP Group IDs in the token.
    id str
    The provider-assigned unique ID for this managed resource.
    identity_provider_id str
    idp_id str
    Unique 24-hexadecimal digit string that identifies the IdP
    issuer_uri str
    Identifier for the issuer of the SAML Assertion.
    okta_idp_id str
    Unique 20-hexadecimal digit string that identifies the IdP.
    pem_file_infos Sequence[GetFederatedSettingsIdentityProviderPemFileInfo]
    protocol str
    The protocol of the identity provider. Either SAML or OIDC.
    request_binding str
    SAML Authentication Request Protocol binding used to send the AuthNRequest. Atlas supports the following binding values:

    • HTTP POST
    • HTTP REDIRECT
    requested_scopes Sequence[str]
    Scopes that MongoDB applications will request from the authorization endpoint.
    response_signature_algorithm str
    Algorithm used to encrypt the IdP signature. Atlas supports the following signature algorithm values:

    • SHA-1
    • SHA-256
    sso_debug_enabled bool
    Flag that indicates whether the IdP has enabled Bypass SAML Mode. Enabling this mode generates a URL that allows you bypass SAML and login to your organizations at any point. You can authenticate with this special URL only when Bypass Mode is enabled. Set this parameter to true during testing. This keeps you from getting locked out of MongoDB.
    sso_url str
    URL of the receiver of the SAML AuthNRequest.
    status str
    Label that indicates whether the identity provider is active. The IdP is Inactive until you map at least one domain to the IdP.
    user_claim str
    Identifier of the claim which contains the user ID in the token.
    acsUrl String
    Assertion consumer service URL to which the IdP sends the SAML response.
    associatedDomains List<String>
    List that contains the configured domains from which users can log in for this IdP.
    associatedOrgs List<Property Map>
    List that contains the organizations from which users can log in for this IdP.
    audienceClaims List<String>
    Identifier of the intended recipient of the token.
    audienceUri String
    Identifier for the intended audience of the SAML Assertion.
    clientId String
    Client identifier that is assigned to an application by the Identity Provider.
    displayName String
    Human-readable label that identifies the IdP.
    federationSettingsId String
    Unique 24-hexadecimal digit string that identifies the federated authentication configuration.
    groupsClaim String
    Identifier of the claim which contains IdP Group IDs in the token.
    id String
    The provider-assigned unique ID for this managed resource.
    identityProviderId String
    idpId String
    Unique 24-hexadecimal digit string that identifies the IdP
    issuerUri String
    Identifier for the issuer of the SAML Assertion.
    oktaIdpId String
    Unique 20-hexadecimal digit string that identifies the IdP.
    pemFileInfos List<Property Map>
    protocol String
    The protocol of the identity provider. Either SAML or OIDC.
    requestBinding String
    SAML Authentication Request Protocol binding used to send the AuthNRequest. Atlas supports the following binding values:

    • HTTP POST
    • HTTP REDIRECT
    requestedScopes List<String>
    Scopes that MongoDB applications will request from the authorization endpoint.
    responseSignatureAlgorithm String
    Algorithm used to encrypt the IdP signature. Atlas supports the following signature algorithm values:

    • SHA-1
    • SHA-256
    ssoDebugEnabled Boolean
    Flag that indicates whether the IdP has enabled Bypass SAML Mode. Enabling this mode generates a URL that allows you bypass SAML and login to your organizations at any point. You can authenticate with this special URL only when Bypass Mode is enabled. Set this parameter to true during testing. This keeps you from getting locked out of MongoDB.
    ssoUrl String
    URL of the receiver of the SAML AuthNRequest.
    status String
    Label that indicates whether the identity provider is active. The IdP is Inactive until you map at least one domain to the IdP.
    userClaim String
    Identifier of the claim which contains the user ID in the token.

    Supporting Types

    GetFederatedSettingsIdentityProviderAssociatedOrg

    DomainAllowLists List<string>
    List that contains the approved domains from which organization users can log in.
    DomainRestrictionEnabled bool
    Flag that indicates whether domain restriction is enabled for the connected organization.
    IdentityProviderId string
    OrgId string
    Unique 24-hexadecimal digit string that identifies the organization that contains your projects.
    PostAuthRoleGrants List<string>
    List that contains the default roles granted to users who authenticate through the IdP in a connected organization. If you provide a postAuthRoleGrants field in the request, the array that you provide replaces the current postAuthRoleGrants.
    RoleMappings List<GetFederatedSettingsIdentityProviderAssociatedOrgRoleMapping>
    UserConflicts List<GetFederatedSettingsIdentityProviderAssociatedOrgUserConflict>
    DomainAllowLists []string
    List that contains the approved domains from which organization users can log in.
    DomainRestrictionEnabled bool
    Flag that indicates whether domain restriction is enabled for the connected organization.
    IdentityProviderId string
    OrgId string
    Unique 24-hexadecimal digit string that identifies the organization that contains your projects.
    PostAuthRoleGrants []string
    List that contains the default roles granted to users who authenticate through the IdP in a connected organization. If you provide a postAuthRoleGrants field in the request, the array that you provide replaces the current postAuthRoleGrants.
    RoleMappings []GetFederatedSettingsIdentityProviderAssociatedOrgRoleMapping
    UserConflicts []GetFederatedSettingsIdentityProviderAssociatedOrgUserConflict
    domainAllowLists List<String>
    List that contains the approved domains from which organization users can log in.
    domainRestrictionEnabled Boolean
    Flag that indicates whether domain restriction is enabled for the connected organization.
    identityProviderId String
    orgId String
    Unique 24-hexadecimal digit string that identifies the organization that contains your projects.
    postAuthRoleGrants List<String>
    List that contains the default roles granted to users who authenticate through the IdP in a connected organization. If you provide a postAuthRoleGrants field in the request, the array that you provide replaces the current postAuthRoleGrants.
    roleMappings List<GetFederatedSettingsIdentityProviderAssociatedOrgRoleMapping>
    userConflicts List<GetFederatedSettingsIdentityProviderAssociatedOrgUserConflict>
    domainAllowLists string[]
    List that contains the approved domains from which organization users can log in.
    domainRestrictionEnabled boolean
    Flag that indicates whether domain restriction is enabled for the connected organization.
    identityProviderId string
    orgId string
    Unique 24-hexadecimal digit string that identifies the organization that contains your projects.
    postAuthRoleGrants string[]
    List that contains the default roles granted to users who authenticate through the IdP in a connected organization. If you provide a postAuthRoleGrants field in the request, the array that you provide replaces the current postAuthRoleGrants.
    roleMappings GetFederatedSettingsIdentityProviderAssociatedOrgRoleMapping[]
    userConflicts GetFederatedSettingsIdentityProviderAssociatedOrgUserConflict[]
    domain_allow_lists Sequence[str]
    List that contains the approved domains from which organization users can log in.
    domain_restriction_enabled bool
    Flag that indicates whether domain restriction is enabled for the connected organization.
    identity_provider_id str
    org_id str
    Unique 24-hexadecimal digit string that identifies the organization that contains your projects.
    post_auth_role_grants Sequence[str]
    List that contains the default roles granted to users who authenticate through the IdP in a connected organization. If you provide a postAuthRoleGrants field in the request, the array that you provide replaces the current postAuthRoleGrants.
    role_mappings Sequence[GetFederatedSettingsIdentityProviderAssociatedOrgRoleMapping]
    user_conflicts Sequence[GetFederatedSettingsIdentityProviderAssociatedOrgUserConflict]
    domainAllowLists List<String>
    List that contains the approved domains from which organization users can log in.
    domainRestrictionEnabled Boolean
    Flag that indicates whether domain restriction is enabled for the connected organization.
    identityProviderId String
    orgId String
    Unique 24-hexadecimal digit string that identifies the organization that contains your projects.
    postAuthRoleGrants List<String>
    List that contains the default roles granted to users who authenticate through the IdP in a connected organization. If you provide a postAuthRoleGrants field in the request, the array that you provide replaces the current postAuthRoleGrants.
    roleMappings List<Property Map>
    userConflicts List<Property Map>

    GetFederatedSettingsIdentityProviderAssociatedOrgRoleMapping

    ExternalGroupName string
    Unique human-readable label that identifies the identity provider group to which this role mapping applies.
    Id string
    Unique 24-hexadecimal digit string that identifies this role mapping.
    RoleAssignments List<GetFederatedSettingsIdentityProviderAssociatedOrgRoleMappingRoleAssignment>
    Atlas roles and the unique identifiers of the groups and organizations associated with each role.
    ExternalGroupName string
    Unique human-readable label that identifies the identity provider group to which this role mapping applies.
    Id string
    Unique 24-hexadecimal digit string that identifies this role mapping.
    RoleAssignments []GetFederatedSettingsIdentityProviderAssociatedOrgRoleMappingRoleAssignment
    Atlas roles and the unique identifiers of the groups and organizations associated with each role.
    externalGroupName String
    Unique human-readable label that identifies the identity provider group to which this role mapping applies.
    id String
    Unique 24-hexadecimal digit string that identifies this role mapping.
    roleAssignments List<GetFederatedSettingsIdentityProviderAssociatedOrgRoleMappingRoleAssignment>
    Atlas roles and the unique identifiers of the groups and organizations associated with each role.
    externalGroupName string
    Unique human-readable label that identifies the identity provider group to which this role mapping applies.
    id string
    Unique 24-hexadecimal digit string that identifies this role mapping.
    roleAssignments GetFederatedSettingsIdentityProviderAssociatedOrgRoleMappingRoleAssignment[]
    Atlas roles and the unique identifiers of the groups and organizations associated with each role.
    external_group_name str
    Unique human-readable label that identifies the identity provider group to which this role mapping applies.
    id str
    Unique 24-hexadecimal digit string that identifies this role mapping.
    role_assignments Sequence[GetFederatedSettingsIdentityProviderAssociatedOrgRoleMappingRoleAssignment]
    Atlas roles and the unique identifiers of the groups and organizations associated with each role.
    externalGroupName String
    Unique human-readable label that identifies the identity provider group to which this role mapping applies.
    id String
    Unique 24-hexadecimal digit string that identifies this role mapping.
    roleAssignments List<Property Map>
    Atlas roles and the unique identifiers of the groups and organizations associated with each role.

    GetFederatedSettingsIdentityProviderAssociatedOrgRoleMappingRoleAssignment

    GroupId string
    Unique identifier of the project to which you want the role mapping to apply.
    OrgId string
    Unique 24-hexadecimal digit string that identifies the organization that contains your projects.
    Role string
    Specifies the Role that is attached to the Role Mapping.
    GroupId string
    Unique identifier of the project to which you want the role mapping to apply.
    OrgId string
    Unique 24-hexadecimal digit string that identifies the organization that contains your projects.
    Role string
    Specifies the Role that is attached to the Role Mapping.
    groupId String
    Unique identifier of the project to which you want the role mapping to apply.
    orgId String
    Unique 24-hexadecimal digit string that identifies the organization that contains your projects.
    role String
    Specifies the Role that is attached to the Role Mapping.
    groupId string
    Unique identifier of the project to which you want the role mapping to apply.
    orgId string
    Unique 24-hexadecimal digit string that identifies the organization that contains your projects.
    role string
    Specifies the Role that is attached to the Role Mapping.
    group_id str
    Unique identifier of the project to which you want the role mapping to apply.
    org_id str
    Unique 24-hexadecimal digit string that identifies the organization that contains your projects.
    role str
    Specifies the Role that is attached to the Role Mapping.
    groupId String
    Unique identifier of the project to which you want the role mapping to apply.
    orgId String
    Unique 24-hexadecimal digit string that identifies the organization that contains your projects.
    role String
    Specifies the Role that is attached to the Role Mapping.

    GetFederatedSettingsIdentityProviderAssociatedOrgUserConflict

    EmailAddress string
    Email address of the the user that conflicts with selected domains.
    FederationSettingsId string
    Unique 24-hexadecimal digit string that identifies the federated authentication configuration.
    FirstName string
    First name of the the user that conflicts with selected domains.
    LastName string
    Last name of the the user that conflicts with selected domains.
    UserId string
    Name of the Atlas user that conflicts with selected domains.
    EmailAddress string
    Email address of the the user that conflicts with selected domains.
    FederationSettingsId string
    Unique 24-hexadecimal digit string that identifies the federated authentication configuration.
    FirstName string
    First name of the the user that conflicts with selected domains.
    LastName string
    Last name of the the user that conflicts with selected domains.
    UserId string
    Name of the Atlas user that conflicts with selected domains.
    emailAddress String
    Email address of the the user that conflicts with selected domains.
    federationSettingsId String
    Unique 24-hexadecimal digit string that identifies the federated authentication configuration.
    firstName String
    First name of the the user that conflicts with selected domains.
    lastName String
    Last name of the the user that conflicts with selected domains.
    userId String
    Name of the Atlas user that conflicts with selected domains.
    emailAddress string
    Email address of the the user that conflicts with selected domains.
    federationSettingsId string
    Unique 24-hexadecimal digit string that identifies the federated authentication configuration.
    firstName string
    First name of the the user that conflicts with selected domains.
    lastName string
    Last name of the the user that conflicts with selected domains.
    userId string
    Name of the Atlas user that conflicts with selected domains.
    email_address str
    Email address of the the user that conflicts with selected domains.
    federation_settings_id str
    Unique 24-hexadecimal digit string that identifies the federated authentication configuration.
    first_name str
    First name of the the user that conflicts with selected domains.
    last_name str
    Last name of the the user that conflicts with selected domains.
    user_id str
    Name of the Atlas user that conflicts with selected domains.
    emailAddress String
    Email address of the the user that conflicts with selected domains.
    federationSettingsId String
    Unique 24-hexadecimal digit string that identifies the federated authentication configuration.
    firstName String
    First name of the the user that conflicts with selected domains.
    lastName String
    Last name of the the user that conflicts with selected domains.
    userId String
    Name of the Atlas user that conflicts with selected domains.

    GetFederatedSettingsIdentityProviderPemFileInfo

    certificates List<Property Map>
    fileName String
    Filename of certificate

    GetFederatedSettingsIdentityProviderPemFileInfoCertificate

    NotAfter string
    Expiration Date.
    NotBefore string
    Start Date.
    NotAfter string
    Expiration Date.
    NotBefore string
    Start Date.
    notAfter String
    Expiration Date.
    notBefore String
    Start Date.
    notAfter string
    Expiration Date.
    notBefore string
    Start Date.
    not_after str
    Expiration Date.
    not_before str
    Start Date.
    notAfter String
    Expiration Date.
    notBefore String
    Start Date.

    Package Details

    Repository
    MongoDB Atlas pulumi/pulumi-mongodbatlas
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the mongodbatlas Terraform Provider.
    mongodbatlas logo
    MongoDB Atlas v3.14.3 published on Monday, Apr 1, 2024 by Pulumi