1. Packages
  2. Sysdig Provider
  3. API Docs
  4. SsoGroupMappingSettings
Viewing docs for sysdig 3.5.0
published on Friday, Mar 6, 2026 by sysdiglabs
sysdig logo
Viewing docs for sysdig 3.5.0
published on Friday, Mar 6, 2026 by sysdiglabs

    Example Usage

    Basic configuration

    import * as pulumi from "@pulumi/pulumi";
    import * as sysdig from "@pulumi/sysdig";
    
    const _default = new sysdig.SsoGroupMappingSettings("default", {
        noMappingStrategy: "UNAUTHORIZED",
        differentRolesSameTeamStrategy: "UNAUTHORIZED",
    });
    
    import pulumi
    import pulumi_sysdig as sysdig
    
    default = sysdig.SsoGroupMappingSettings("default",
        no_mapping_strategy="UNAUTHORIZED",
        different_roles_same_team_strategy="UNAUTHORIZED")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/sysdig/v3/sysdig"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := sysdig.NewSsoGroupMappingSettings(ctx, "default", &sysdig.SsoGroupMappingSettingsArgs{
    			NoMappingStrategy:              pulumi.String("UNAUTHORIZED"),
    			DifferentRolesSameTeamStrategy: pulumi.String("UNAUTHORIZED"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Sysdig = Pulumi.Sysdig;
    
    return await Deployment.RunAsync(() => 
    {
        var @default = new Sysdig.SsoGroupMappingSettings("default", new()
        {
            NoMappingStrategy = "UNAUTHORIZED",
            DifferentRolesSameTeamStrategy = "UNAUTHORIZED",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.sysdig.SsoGroupMappingSettings;
    import com.pulumi.sysdig.SsoGroupMappingSettingsArgs;
    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 default_ = new SsoGroupMappingSettings("default", SsoGroupMappingSettingsArgs.builder()
                .noMappingStrategy("UNAUTHORIZED")
                .differentRolesSameTeamStrategy("UNAUTHORIZED")
                .build());
    
        }
    }
    
    resources:
      default:
        type: sysdig:SsoGroupMappingSettings
        properties:
          noMappingStrategy: UNAUTHORIZED
          differentRolesSameTeamStrategy: UNAUTHORIZED
    

    With error redirect

    import * as pulumi from "@pulumi/pulumi";
    import * as sysdig from "@pulumi/sysdig";
    
    const withRedirect = new sysdig.SsoGroupMappingSettings("with_redirect", {
        noMappingStrategy: "NO_MAPPINGS_ERROR_REDIRECT",
        differentRolesSameTeamStrategy: "HIGHEST_ROLE",
        noMappingsErrorRedirectUrl: "https://example.com/sso-error",
    });
    
    import pulumi
    import pulumi_sysdig as sysdig
    
    with_redirect = sysdig.SsoGroupMappingSettings("with_redirect",
        no_mapping_strategy="NO_MAPPINGS_ERROR_REDIRECT",
        different_roles_same_team_strategy="HIGHEST_ROLE",
        no_mappings_error_redirect_url="https://example.com/sso-error")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/sysdig/v3/sysdig"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := sysdig.NewSsoGroupMappingSettings(ctx, "with_redirect", &sysdig.SsoGroupMappingSettingsArgs{
    			NoMappingStrategy:              pulumi.String("NO_MAPPINGS_ERROR_REDIRECT"),
    			DifferentRolesSameTeamStrategy: pulumi.String("HIGHEST_ROLE"),
    			NoMappingsErrorRedirectUrl:     pulumi.String("https://example.com/sso-error"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Sysdig = Pulumi.Sysdig;
    
    return await Deployment.RunAsync(() => 
    {
        var withRedirect = new Sysdig.SsoGroupMappingSettings("with_redirect", new()
        {
            NoMappingStrategy = "NO_MAPPINGS_ERROR_REDIRECT",
            DifferentRolesSameTeamStrategy = "HIGHEST_ROLE",
            NoMappingsErrorRedirectUrl = "https://example.com/sso-error",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.sysdig.SsoGroupMappingSettings;
    import com.pulumi.sysdig.SsoGroupMappingSettingsArgs;
    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 withRedirect = new SsoGroupMappingSettings("withRedirect", SsoGroupMappingSettingsArgs.builder()
                .noMappingStrategy("NO_MAPPINGS_ERROR_REDIRECT")
                .differentRolesSameTeamStrategy("HIGHEST_ROLE")
                .noMappingsErrorRedirectUrl("https://example.com/sso-error")
                .build());
    
        }
    }
    
    resources:
      withRedirect:
        type: sysdig:SsoGroupMappingSettings
        name: with_redirect
        properties:
          noMappingStrategy: NO_MAPPINGS_ERROR_REDIRECT
          differentRolesSameTeamStrategy: HIGHEST_ROLE
          noMappingsErrorRedirectUrl: https://example.com/sso-error
    

    Create SsoGroupMappingSettings Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new SsoGroupMappingSettings(name: string, args: SsoGroupMappingSettingsArgs, opts?: CustomResourceOptions);
    @overload
    def SsoGroupMappingSettings(resource_name: str,
                                args: SsoGroupMappingSettingsArgs,
                                opts: Optional[ResourceOptions] = None)
    
    @overload
    def SsoGroupMappingSettings(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                different_roles_same_team_strategy: Optional[str] = None,
                                no_mapping_strategy: Optional[str] = None,
                                no_mappings_error_redirect_url: Optional[str] = None,
                                sso_group_mapping_settings_id: Optional[str] = None,
                                timeouts: Optional[SsoGroupMappingSettingsTimeoutsArgs] = None)
    func NewSsoGroupMappingSettings(ctx *Context, name string, args SsoGroupMappingSettingsArgs, opts ...ResourceOption) (*SsoGroupMappingSettings, error)
    public SsoGroupMappingSettings(string name, SsoGroupMappingSettingsArgs args, CustomResourceOptions? opts = null)
    public SsoGroupMappingSettings(String name, SsoGroupMappingSettingsArgs args)
    public SsoGroupMappingSettings(String name, SsoGroupMappingSettingsArgs args, CustomResourceOptions options)
    
    type: sysdig:SsoGroupMappingSettings
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args SsoGroupMappingSettingsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args SsoGroupMappingSettingsArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args SsoGroupMappingSettingsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SsoGroupMappingSettingsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SsoGroupMappingSettingsArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var ssoGroupMappingSettingsResource = new Sysdig.SsoGroupMappingSettings("ssoGroupMappingSettingsResource", new()
    {
        DifferentRolesSameTeamStrategy = "string",
        NoMappingStrategy = "string",
        NoMappingsErrorRedirectUrl = "string",
        SsoGroupMappingSettingsId = "string",
        Timeouts = new Sysdig.Inputs.SsoGroupMappingSettingsTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Read = "string",
            Update = "string",
        },
    });
    
    example, err := sysdig.NewSsoGroupMappingSettings(ctx, "ssoGroupMappingSettingsResource", &sysdig.SsoGroupMappingSettingsArgs{
    	DifferentRolesSameTeamStrategy: pulumi.String("string"),
    	NoMappingStrategy:              pulumi.String("string"),
    	NoMappingsErrorRedirectUrl:     pulumi.String("string"),
    	SsoGroupMappingSettingsId:      pulumi.String("string"),
    	Timeouts: &sysdig.SsoGroupMappingSettingsTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Read:   pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    })
    
    var ssoGroupMappingSettingsResource = new SsoGroupMappingSettings("ssoGroupMappingSettingsResource", SsoGroupMappingSettingsArgs.builder()
        .differentRolesSameTeamStrategy("string")
        .noMappingStrategy("string")
        .noMappingsErrorRedirectUrl("string")
        .ssoGroupMappingSettingsId("string")
        .timeouts(SsoGroupMappingSettingsTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .read("string")
            .update("string")
            .build())
        .build());
    
    sso_group_mapping_settings_resource = sysdig.SsoGroupMappingSettings("ssoGroupMappingSettingsResource",
        different_roles_same_team_strategy="string",
        no_mapping_strategy="string",
        no_mappings_error_redirect_url="string",
        sso_group_mapping_settings_id="string",
        timeouts={
            "create": "string",
            "delete": "string",
            "read": "string",
            "update": "string",
        })
    
    const ssoGroupMappingSettingsResource = new sysdig.SsoGroupMappingSettings("ssoGroupMappingSettingsResource", {
        differentRolesSameTeamStrategy: "string",
        noMappingStrategy: "string",
        noMappingsErrorRedirectUrl: "string",
        ssoGroupMappingSettingsId: "string",
        timeouts: {
            create: "string",
            "delete": "string",
            read: "string",
            update: "string",
        },
    });
    
    type: sysdig:SsoGroupMappingSettings
    properties:
        differentRolesSameTeamStrategy: string
        noMappingStrategy: string
        noMappingsErrorRedirectUrl: string
        ssoGroupMappingSettingsId: string
        timeouts:
            create: string
            delete: string
            read: string
            update: string
    

    SsoGroupMappingSettings Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The SsoGroupMappingSettings resource accepts the following input properties:

    DifferentRolesSameTeamStrategy string
    Strategy when a user matches multiple mappings with different roles for the same team. Valid values:

    • UNAUTHORIZED - Deny access.
    • HIGHEST_ROLE - Use the highest-privilege role.
    • LOWEST_ROLE - Use the lowest-privilege role.
    NoMappingStrategy string
    Strategy when no group mapping matches a user. Valid values:

    • UNAUTHORIZED - Deny access.
    • DEFAULT_TEAM_DEFAULT_ROLE - Assign default team and role.
    • NO_MAPPINGS_ERROR_REDIRECT - Redirect to an error URL (requires no_mappings_error_redirect_url).
    NoMappingsErrorRedirectUrl string
    URL to redirect users when no_mapping_strategy is NO_MAPPINGS_ERROR_REDIRECT. Maximum 2048 characters.
    SsoGroupMappingSettingsId string
    Timeouts SsoGroupMappingSettingsTimeouts
    DifferentRolesSameTeamStrategy string
    Strategy when a user matches multiple mappings with different roles for the same team. Valid values:

    • UNAUTHORIZED - Deny access.
    • HIGHEST_ROLE - Use the highest-privilege role.
    • LOWEST_ROLE - Use the lowest-privilege role.
    NoMappingStrategy string
    Strategy when no group mapping matches a user. Valid values:

    • UNAUTHORIZED - Deny access.
    • DEFAULT_TEAM_DEFAULT_ROLE - Assign default team and role.
    • NO_MAPPINGS_ERROR_REDIRECT - Redirect to an error URL (requires no_mappings_error_redirect_url).
    NoMappingsErrorRedirectUrl string
    URL to redirect users when no_mapping_strategy is NO_MAPPINGS_ERROR_REDIRECT. Maximum 2048 characters.
    SsoGroupMappingSettingsId string
    Timeouts SsoGroupMappingSettingsTimeoutsArgs
    differentRolesSameTeamStrategy String
    Strategy when a user matches multiple mappings with different roles for the same team. Valid values:

    • UNAUTHORIZED - Deny access.
    • HIGHEST_ROLE - Use the highest-privilege role.
    • LOWEST_ROLE - Use the lowest-privilege role.
    noMappingStrategy String
    Strategy when no group mapping matches a user. Valid values:

    • UNAUTHORIZED - Deny access.
    • DEFAULT_TEAM_DEFAULT_ROLE - Assign default team and role.
    • NO_MAPPINGS_ERROR_REDIRECT - Redirect to an error URL (requires no_mappings_error_redirect_url).
    noMappingsErrorRedirectUrl String
    URL to redirect users when no_mapping_strategy is NO_MAPPINGS_ERROR_REDIRECT. Maximum 2048 characters.
    ssoGroupMappingSettingsId String
    timeouts SsoGroupMappingSettingsTimeouts
    differentRolesSameTeamStrategy string
    Strategy when a user matches multiple mappings with different roles for the same team. Valid values:

    • UNAUTHORIZED - Deny access.
    • HIGHEST_ROLE - Use the highest-privilege role.
    • LOWEST_ROLE - Use the lowest-privilege role.
    noMappingStrategy string
    Strategy when no group mapping matches a user. Valid values:

    • UNAUTHORIZED - Deny access.
    • DEFAULT_TEAM_DEFAULT_ROLE - Assign default team and role.
    • NO_MAPPINGS_ERROR_REDIRECT - Redirect to an error URL (requires no_mappings_error_redirect_url).
    noMappingsErrorRedirectUrl string
    URL to redirect users when no_mapping_strategy is NO_MAPPINGS_ERROR_REDIRECT. Maximum 2048 characters.
    ssoGroupMappingSettingsId string
    timeouts SsoGroupMappingSettingsTimeouts
    different_roles_same_team_strategy str
    Strategy when a user matches multiple mappings with different roles for the same team. Valid values:

    • UNAUTHORIZED - Deny access.
    • HIGHEST_ROLE - Use the highest-privilege role.
    • LOWEST_ROLE - Use the lowest-privilege role.
    no_mapping_strategy str
    Strategy when no group mapping matches a user. Valid values:

    • UNAUTHORIZED - Deny access.
    • DEFAULT_TEAM_DEFAULT_ROLE - Assign default team and role.
    • NO_MAPPINGS_ERROR_REDIRECT - Redirect to an error URL (requires no_mappings_error_redirect_url).
    no_mappings_error_redirect_url str
    URL to redirect users when no_mapping_strategy is NO_MAPPINGS_ERROR_REDIRECT. Maximum 2048 characters.
    sso_group_mapping_settings_id str
    timeouts SsoGroupMappingSettingsTimeoutsArgs
    differentRolesSameTeamStrategy String
    Strategy when a user matches multiple mappings with different roles for the same team. Valid values:

    • UNAUTHORIZED - Deny access.
    • HIGHEST_ROLE - Use the highest-privilege role.
    • LOWEST_ROLE - Use the lowest-privilege role.
    noMappingStrategy String
    Strategy when no group mapping matches a user. Valid values:

    • UNAUTHORIZED - Deny access.
    • DEFAULT_TEAM_DEFAULT_ROLE - Assign default team and role.
    • NO_MAPPINGS_ERROR_REDIRECT - Redirect to an error URL (requires no_mappings_error_redirect_url).
    noMappingsErrorRedirectUrl String
    URL to redirect users when no_mapping_strategy is NO_MAPPINGS_ERROR_REDIRECT. Maximum 2048 characters.
    ssoGroupMappingSettingsId String
    timeouts Property Map

    Outputs

    All input properties are implicitly available as output properties. Additionally, the SsoGroupMappingSettings resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing SsoGroupMappingSettings Resource

    Get an existing SsoGroupMappingSettings resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: SsoGroupMappingSettingsState, opts?: CustomResourceOptions): SsoGroupMappingSettings
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            different_roles_same_team_strategy: Optional[str] = None,
            no_mapping_strategy: Optional[str] = None,
            no_mappings_error_redirect_url: Optional[str] = None,
            sso_group_mapping_settings_id: Optional[str] = None,
            timeouts: Optional[SsoGroupMappingSettingsTimeoutsArgs] = None) -> SsoGroupMappingSettings
    func GetSsoGroupMappingSettings(ctx *Context, name string, id IDInput, state *SsoGroupMappingSettingsState, opts ...ResourceOption) (*SsoGroupMappingSettings, error)
    public static SsoGroupMappingSettings Get(string name, Input<string> id, SsoGroupMappingSettingsState? state, CustomResourceOptions? opts = null)
    public static SsoGroupMappingSettings get(String name, Output<String> id, SsoGroupMappingSettingsState state, CustomResourceOptions options)
    resources:  _:    type: sysdig:SsoGroupMappingSettings    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    DifferentRolesSameTeamStrategy string
    Strategy when a user matches multiple mappings with different roles for the same team. Valid values:

    • UNAUTHORIZED - Deny access.
    • HIGHEST_ROLE - Use the highest-privilege role.
    • LOWEST_ROLE - Use the lowest-privilege role.
    NoMappingStrategy string
    Strategy when no group mapping matches a user. Valid values:

    • UNAUTHORIZED - Deny access.
    • DEFAULT_TEAM_DEFAULT_ROLE - Assign default team and role.
    • NO_MAPPINGS_ERROR_REDIRECT - Redirect to an error URL (requires no_mappings_error_redirect_url).
    NoMappingsErrorRedirectUrl string
    URL to redirect users when no_mapping_strategy is NO_MAPPINGS_ERROR_REDIRECT. Maximum 2048 characters.
    SsoGroupMappingSettingsId string
    Timeouts SsoGroupMappingSettingsTimeouts
    DifferentRolesSameTeamStrategy string
    Strategy when a user matches multiple mappings with different roles for the same team. Valid values:

    • UNAUTHORIZED - Deny access.
    • HIGHEST_ROLE - Use the highest-privilege role.
    • LOWEST_ROLE - Use the lowest-privilege role.
    NoMappingStrategy string
    Strategy when no group mapping matches a user. Valid values:

    • UNAUTHORIZED - Deny access.
    • DEFAULT_TEAM_DEFAULT_ROLE - Assign default team and role.
    • NO_MAPPINGS_ERROR_REDIRECT - Redirect to an error URL (requires no_mappings_error_redirect_url).
    NoMappingsErrorRedirectUrl string
    URL to redirect users when no_mapping_strategy is NO_MAPPINGS_ERROR_REDIRECT. Maximum 2048 characters.
    SsoGroupMappingSettingsId string
    Timeouts SsoGroupMappingSettingsTimeoutsArgs
    differentRolesSameTeamStrategy String
    Strategy when a user matches multiple mappings with different roles for the same team. Valid values:

    • UNAUTHORIZED - Deny access.
    • HIGHEST_ROLE - Use the highest-privilege role.
    • LOWEST_ROLE - Use the lowest-privilege role.
    noMappingStrategy String
    Strategy when no group mapping matches a user. Valid values:

    • UNAUTHORIZED - Deny access.
    • DEFAULT_TEAM_DEFAULT_ROLE - Assign default team and role.
    • NO_MAPPINGS_ERROR_REDIRECT - Redirect to an error URL (requires no_mappings_error_redirect_url).
    noMappingsErrorRedirectUrl String
    URL to redirect users when no_mapping_strategy is NO_MAPPINGS_ERROR_REDIRECT. Maximum 2048 characters.
    ssoGroupMappingSettingsId String
    timeouts SsoGroupMappingSettingsTimeouts
    differentRolesSameTeamStrategy string
    Strategy when a user matches multiple mappings with different roles for the same team. Valid values:

    • UNAUTHORIZED - Deny access.
    • HIGHEST_ROLE - Use the highest-privilege role.
    • LOWEST_ROLE - Use the lowest-privilege role.
    noMappingStrategy string
    Strategy when no group mapping matches a user. Valid values:

    • UNAUTHORIZED - Deny access.
    • DEFAULT_TEAM_DEFAULT_ROLE - Assign default team and role.
    • NO_MAPPINGS_ERROR_REDIRECT - Redirect to an error URL (requires no_mappings_error_redirect_url).
    noMappingsErrorRedirectUrl string
    URL to redirect users when no_mapping_strategy is NO_MAPPINGS_ERROR_REDIRECT. Maximum 2048 characters.
    ssoGroupMappingSettingsId string
    timeouts SsoGroupMappingSettingsTimeouts
    different_roles_same_team_strategy str
    Strategy when a user matches multiple mappings with different roles for the same team. Valid values:

    • UNAUTHORIZED - Deny access.
    • HIGHEST_ROLE - Use the highest-privilege role.
    • LOWEST_ROLE - Use the lowest-privilege role.
    no_mapping_strategy str
    Strategy when no group mapping matches a user. Valid values:

    • UNAUTHORIZED - Deny access.
    • DEFAULT_TEAM_DEFAULT_ROLE - Assign default team and role.
    • NO_MAPPINGS_ERROR_REDIRECT - Redirect to an error URL (requires no_mappings_error_redirect_url).
    no_mappings_error_redirect_url str
    URL to redirect users when no_mapping_strategy is NO_MAPPINGS_ERROR_REDIRECT. Maximum 2048 characters.
    sso_group_mapping_settings_id str
    timeouts SsoGroupMappingSettingsTimeoutsArgs
    differentRolesSameTeamStrategy String
    Strategy when a user matches multiple mappings with different roles for the same team. Valid values:

    • UNAUTHORIZED - Deny access.
    • HIGHEST_ROLE - Use the highest-privilege role.
    • LOWEST_ROLE - Use the lowest-privilege role.
    noMappingStrategy String
    Strategy when no group mapping matches a user. Valid values:

    • UNAUTHORIZED - Deny access.
    • DEFAULT_TEAM_DEFAULT_ROLE - Assign default team and role.
    • NO_MAPPINGS_ERROR_REDIRECT - Redirect to an error URL (requires no_mappings_error_redirect_url).
    noMappingsErrorRedirectUrl String
    URL to redirect users when no_mapping_strategy is NO_MAPPINGS_ERROR_REDIRECT. Maximum 2048 characters.
    ssoGroupMappingSettingsId String
    timeouts Property Map

    Supporting Types

    SsoGroupMappingSettingsTimeouts, SsoGroupMappingSettingsTimeoutsArgs

    Create string
    Delete string
    Read string
    Update string
    Create string
    Delete string
    Read string
    Update string
    create String
    delete String
    read String
    update String
    create string
    delete string
    read string
    update string
    create str
    delete str
    read str
    update str
    create String
    delete String
    read String
    update String

    Import

    SSO group mapping settings can be imported using the static ID sso_group_mapping_settings:

    $ pulumi import sysdig:index/ssoGroupMappingSettings:SsoGroupMappingSettings default sso_group_mapping_settings
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    sysdig sysdiglabs/terraform-provider-sysdig
    License
    Notes
    This Pulumi package is based on the sysdig Terraform Provider.
    sysdig logo
    Viewing docs for sysdig 3.5.0
    published on Friday, Mar 6, 2026 by sysdiglabs
      Try Pulumi Cloud free. Your team will thank you.