1. Packages
  2. Sysdig Provider
  3. API Docs
  4. SsoGroupMapping
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

    Standard role for all teams

    import * as pulumi from "@pulumi/pulumi";
    import * as sysdig from "@pulumi/sysdig";
    
    const allTeams = new sysdig.SsoGroupMapping("all_teams", {
        groupName: "engineering",
        standardTeamRole: "ROLE_TEAM_STANDARD",
        isAdmin: false,
        teamMap: {
            isForAllTeams: true,
        },
        weight: 10,
    });
    
    import pulumi
    import pulumi_sysdig as sysdig
    
    all_teams = sysdig.SsoGroupMapping("all_teams",
        group_name="engineering",
        standard_team_role="ROLE_TEAM_STANDARD",
        is_admin=False,
        team_map={
            "is_for_all_teams": True,
        },
        weight=10)
    
    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.NewSsoGroupMapping(ctx, "all_teams", &sysdig.SsoGroupMappingArgs{
    			GroupName:        pulumi.String("engineering"),
    			StandardTeamRole: pulumi.String("ROLE_TEAM_STANDARD"),
    			IsAdmin:          pulumi.Bool(false),
    			TeamMap: &sysdig.SsoGroupMappingTeamMapArgs{
    				IsForAllTeams: pulumi.Bool(true),
    			},
    			Weight: pulumi.Float64(10),
    		})
    		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 allTeams = new Sysdig.SsoGroupMapping("all_teams", new()
        {
            GroupName = "engineering",
            StandardTeamRole = "ROLE_TEAM_STANDARD",
            IsAdmin = false,
            TeamMap = new Sysdig.Inputs.SsoGroupMappingTeamMapArgs
            {
                IsForAllTeams = true,
            },
            Weight = 10,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.sysdig.SsoGroupMapping;
    import com.pulumi.sysdig.SsoGroupMappingArgs;
    import com.pulumi.sysdig.inputs.SsoGroupMappingTeamMapArgs;
    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 allTeams = new SsoGroupMapping("allTeams", SsoGroupMappingArgs.builder()
                .groupName("engineering")
                .standardTeamRole("ROLE_TEAM_STANDARD")
                .isAdmin(false)
                .teamMap(SsoGroupMappingTeamMapArgs.builder()
                    .isForAllTeams(true)
                    .build())
                .weight(10.0)
                .build());
    
        }
    }
    
    resources:
      allTeams:
        type: sysdig:SsoGroupMapping
        name: all_teams
        properties:
          groupName: engineering
          standardTeamRole: ROLE_TEAM_STANDARD
          isAdmin: false
          teamMap:
            isForAllTeams: true
          weight: 10
    

    Custom role for specific teams

    import * as pulumi from "@pulumi/pulumi";
    import * as sysdig from "@pulumi/sysdig";
    
    const specificTeams = new sysdig.SsoGroupMapping("specific_teams", {
        groupName: "devops",
        customTeamRoleId: devopsRole.id,
        teamMap: {
            isForAllTeams: false,
            teamIds: [
                myTeam.id,
                myTeamSysdigMonitorTeam.id,
            ],
        },
        weight: 20,
    });
    
    import pulumi
    import pulumi_sysdig as sysdig
    
    specific_teams = sysdig.SsoGroupMapping("specific_teams",
        group_name="devops",
        custom_team_role_id=devops_role["id"],
        team_map={
            "is_for_all_teams": False,
            "team_ids": [
                my_team["id"],
                my_team_sysdig_monitor_team["id"],
            ],
        },
        weight=20)
    
    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.NewSsoGroupMapping(ctx, "specific_teams", &sysdig.SsoGroupMappingArgs{
    			GroupName:        pulumi.String("devops"),
    			CustomTeamRoleId: pulumi.Any(devopsRole.Id),
    			TeamMap: &sysdig.SsoGroupMappingTeamMapArgs{
    				IsForAllTeams: pulumi.Bool(false),
    				TeamIds: pulumi.Float64Array{
    					myTeam.Id,
    					myTeamSysdigMonitorTeam.Id,
    				},
    			},
    			Weight: pulumi.Float64(20),
    		})
    		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 specificTeams = new Sysdig.SsoGroupMapping("specific_teams", new()
        {
            GroupName = "devops",
            CustomTeamRoleId = devopsRole.Id,
            TeamMap = new Sysdig.Inputs.SsoGroupMappingTeamMapArgs
            {
                IsForAllTeams = false,
                TeamIds = new[]
                {
                    myTeam.Id,
                    myTeamSysdigMonitorTeam.Id,
                },
            },
            Weight = 20,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.sysdig.SsoGroupMapping;
    import com.pulumi.sysdig.SsoGroupMappingArgs;
    import com.pulumi.sysdig.inputs.SsoGroupMappingTeamMapArgs;
    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 specificTeams = new SsoGroupMapping("specificTeams", SsoGroupMappingArgs.builder()
                .groupName("devops")
                .customTeamRoleId(devopsRole.id())
                .teamMap(SsoGroupMappingTeamMapArgs.builder()
                    .isForAllTeams(false)
                    .teamIds(                
                        myTeam.id(),
                        myTeamSysdigMonitorTeam.id())
                    .build())
                .weight(20.0)
                .build());
    
        }
    }
    
    resources:
      specificTeams:
        type: sysdig:SsoGroupMapping
        name: specific_teams
        properties:
          groupName: devops
          customTeamRoleId: ${devopsRole.id}
          teamMap:
            isForAllTeams: false
            teamIds:
              - ${myTeam.id}
              - ${myTeamSysdigMonitorTeam.id}
          weight: 20
    

    Admin group mapping

    import * as pulumi from "@pulumi/pulumi";
    import * as sysdig from "@pulumi/sysdig";
    
    const admins = new sysdig.SsoGroupMapping("admins", {
        groupName: "platform-admins",
        standardTeamRole: "ROLE_TEAM_MANAGER",
        isAdmin: true,
        teamMap: {
            isForAllTeams: true,
        },
    });
    
    import pulumi
    import pulumi_sysdig as sysdig
    
    admins = sysdig.SsoGroupMapping("admins",
        group_name="platform-admins",
        standard_team_role="ROLE_TEAM_MANAGER",
        is_admin=True,
        team_map={
            "is_for_all_teams": True,
        })
    
    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.NewSsoGroupMapping(ctx, "admins", &sysdig.SsoGroupMappingArgs{
    			GroupName:        pulumi.String("platform-admins"),
    			StandardTeamRole: pulumi.String("ROLE_TEAM_MANAGER"),
    			IsAdmin:          pulumi.Bool(true),
    			TeamMap: &sysdig.SsoGroupMappingTeamMapArgs{
    				IsForAllTeams: pulumi.Bool(true),
    			},
    		})
    		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 admins = new Sysdig.SsoGroupMapping("admins", new()
        {
            GroupName = "platform-admins",
            StandardTeamRole = "ROLE_TEAM_MANAGER",
            IsAdmin = true,
            TeamMap = new Sysdig.Inputs.SsoGroupMappingTeamMapArgs
            {
                IsForAllTeams = true,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.sysdig.SsoGroupMapping;
    import com.pulumi.sysdig.SsoGroupMappingArgs;
    import com.pulumi.sysdig.inputs.SsoGroupMappingTeamMapArgs;
    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 admins = new SsoGroupMapping("admins", SsoGroupMappingArgs.builder()
                .groupName("platform-admins")
                .standardTeamRole("ROLE_TEAM_MANAGER")
                .isAdmin(true)
                .teamMap(SsoGroupMappingTeamMapArgs.builder()
                    .isForAllTeams(true)
                    .build())
                .build());
    
        }
    }
    
    resources:
      admins:
        type: sysdig:SsoGroupMapping
        properties:
          groupName: platform-admins
          standardTeamRole: ROLE_TEAM_MANAGER
          isAdmin: true
          teamMap:
            isForAllTeams: true
    

    Create SsoGroupMapping Resource

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

    Constructor syntax

    new SsoGroupMapping(name: string, args: SsoGroupMappingArgs, opts?: CustomResourceOptions);
    @overload
    def SsoGroupMapping(resource_name: str,
                        args: SsoGroupMappingArgs,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def SsoGroupMapping(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        group_name: Optional[str] = None,
                        team_map: Optional[SsoGroupMappingTeamMapArgs] = None,
                        custom_team_role_id: Optional[float] = None,
                        is_admin: Optional[bool] = None,
                        sso_group_mapping_id: Optional[str] = None,
                        standard_team_role: Optional[str] = None,
                        timeouts: Optional[SsoGroupMappingTimeoutsArgs] = None,
                        weight: Optional[float] = None)
    func NewSsoGroupMapping(ctx *Context, name string, args SsoGroupMappingArgs, opts ...ResourceOption) (*SsoGroupMapping, error)
    public SsoGroupMapping(string name, SsoGroupMappingArgs args, CustomResourceOptions? opts = null)
    public SsoGroupMapping(String name, SsoGroupMappingArgs args)
    public SsoGroupMapping(String name, SsoGroupMappingArgs args, CustomResourceOptions options)
    
    type: sysdig:SsoGroupMapping
    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 SsoGroupMappingArgs
    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 SsoGroupMappingArgs
    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 SsoGroupMappingArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SsoGroupMappingArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SsoGroupMappingArgs
    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 ssoGroupMappingResource = new Sysdig.SsoGroupMapping("ssoGroupMappingResource", new()
    {
        GroupName = "string",
        TeamMap = new Sysdig.Inputs.SsoGroupMappingTeamMapArgs
        {
            IsForAllTeams = false,
            TeamIds = new[]
            {
                0,
            },
        },
        CustomTeamRoleId = 0,
        IsAdmin = false,
        SsoGroupMappingId = "string",
        StandardTeamRole = "string",
        Timeouts = new Sysdig.Inputs.SsoGroupMappingTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Read = "string",
            Update = "string",
        },
        Weight = 0,
    });
    
    example, err := sysdig.NewSsoGroupMapping(ctx, "ssoGroupMappingResource", &sysdig.SsoGroupMappingArgs{
    	GroupName: pulumi.String("string"),
    	TeamMap: &sysdig.SsoGroupMappingTeamMapArgs{
    		IsForAllTeams: pulumi.Bool(false),
    		TeamIds: pulumi.Float64Array{
    			pulumi.Float64(0),
    		},
    	},
    	CustomTeamRoleId:  pulumi.Float64(0),
    	IsAdmin:           pulumi.Bool(false),
    	SsoGroupMappingId: pulumi.String("string"),
    	StandardTeamRole:  pulumi.String("string"),
    	Timeouts: &sysdig.SsoGroupMappingTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Read:   pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    	Weight: pulumi.Float64(0),
    })
    
    var ssoGroupMappingResource = new SsoGroupMapping("ssoGroupMappingResource", SsoGroupMappingArgs.builder()
        .groupName("string")
        .teamMap(SsoGroupMappingTeamMapArgs.builder()
            .isForAllTeams(false)
            .teamIds(0.0)
            .build())
        .customTeamRoleId(0.0)
        .isAdmin(false)
        .ssoGroupMappingId("string")
        .standardTeamRole("string")
        .timeouts(SsoGroupMappingTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .read("string")
            .update("string")
            .build())
        .weight(0.0)
        .build());
    
    sso_group_mapping_resource = sysdig.SsoGroupMapping("ssoGroupMappingResource",
        group_name="string",
        team_map={
            "is_for_all_teams": False,
            "team_ids": [0],
        },
        custom_team_role_id=0,
        is_admin=False,
        sso_group_mapping_id="string",
        standard_team_role="string",
        timeouts={
            "create": "string",
            "delete": "string",
            "read": "string",
            "update": "string",
        },
        weight=0)
    
    const ssoGroupMappingResource = new sysdig.SsoGroupMapping("ssoGroupMappingResource", {
        groupName: "string",
        teamMap: {
            isForAllTeams: false,
            teamIds: [0],
        },
        customTeamRoleId: 0,
        isAdmin: false,
        ssoGroupMappingId: "string",
        standardTeamRole: "string",
        timeouts: {
            create: "string",
            "delete": "string",
            read: "string",
            update: "string",
        },
        weight: 0,
    });
    
    type: sysdig:SsoGroupMapping
    properties:
        customTeamRoleId: 0
        groupName: string
        isAdmin: false
        ssoGroupMappingId: string
        standardTeamRole: string
        teamMap:
            isForAllTeams: false
            teamIds:
                - 0
        timeouts:
            create: string
            delete: string
            read: string
            update: string
        weight: 0
    

    SsoGroupMapping 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 SsoGroupMapping resource accepts the following input properties:

    GroupName string
    The SSO group name to map. Maximum 256 characters.
    TeamMap SsoGroupMappingTeamMap
    Block defining team mapping. Maximum 1 block.
    CustomTeamRoleId double
    The ID of a custom role to assign to users. Conflicts with standard_team_role. One of standard_team_role or custom_team_role_id must be set.
    IsAdmin bool
    Whether group members should be Sysdig administrators. Default: false.
    SsoGroupMappingId string
    The ID of the SSO group mapping.
    StandardTeamRole string
    The standard team role assigned to users. Conflicts with custom_team_role_id. One of standard_team_role or custom_team_role_id must be set.
    Timeouts SsoGroupMappingTimeouts
    Weight double
    Priority weight for conflict resolution. Lower numbers have higher priority. Must be between 1 and 32767. Default: 32767.
    GroupName string
    The SSO group name to map. Maximum 256 characters.
    TeamMap SsoGroupMappingTeamMapArgs
    Block defining team mapping. Maximum 1 block.
    CustomTeamRoleId float64
    The ID of a custom role to assign to users. Conflicts with standard_team_role. One of standard_team_role or custom_team_role_id must be set.
    IsAdmin bool
    Whether group members should be Sysdig administrators. Default: false.
    SsoGroupMappingId string
    The ID of the SSO group mapping.
    StandardTeamRole string
    The standard team role assigned to users. Conflicts with custom_team_role_id. One of standard_team_role or custom_team_role_id must be set.
    Timeouts SsoGroupMappingTimeoutsArgs
    Weight float64
    Priority weight for conflict resolution. Lower numbers have higher priority. Must be between 1 and 32767. Default: 32767.
    groupName String
    The SSO group name to map. Maximum 256 characters.
    teamMap SsoGroupMappingTeamMap
    Block defining team mapping. Maximum 1 block.
    customTeamRoleId Double
    The ID of a custom role to assign to users. Conflicts with standard_team_role. One of standard_team_role or custom_team_role_id must be set.
    isAdmin Boolean
    Whether group members should be Sysdig administrators. Default: false.
    ssoGroupMappingId String
    The ID of the SSO group mapping.
    standardTeamRole String
    The standard team role assigned to users. Conflicts with custom_team_role_id. One of standard_team_role or custom_team_role_id must be set.
    timeouts SsoGroupMappingTimeouts
    weight Double
    Priority weight for conflict resolution. Lower numbers have higher priority. Must be between 1 and 32767. Default: 32767.
    groupName string
    The SSO group name to map. Maximum 256 characters.
    teamMap SsoGroupMappingTeamMap
    Block defining team mapping. Maximum 1 block.
    customTeamRoleId number
    The ID of a custom role to assign to users. Conflicts with standard_team_role. One of standard_team_role or custom_team_role_id must be set.
    isAdmin boolean
    Whether group members should be Sysdig administrators. Default: false.
    ssoGroupMappingId string
    The ID of the SSO group mapping.
    standardTeamRole string
    The standard team role assigned to users. Conflicts with custom_team_role_id. One of standard_team_role or custom_team_role_id must be set.
    timeouts SsoGroupMappingTimeouts
    weight number
    Priority weight for conflict resolution. Lower numbers have higher priority. Must be between 1 and 32767. Default: 32767.
    group_name str
    The SSO group name to map. Maximum 256 characters.
    team_map SsoGroupMappingTeamMapArgs
    Block defining team mapping. Maximum 1 block.
    custom_team_role_id float
    The ID of a custom role to assign to users. Conflicts with standard_team_role. One of standard_team_role or custom_team_role_id must be set.
    is_admin bool
    Whether group members should be Sysdig administrators. Default: false.
    sso_group_mapping_id str
    The ID of the SSO group mapping.
    standard_team_role str
    The standard team role assigned to users. Conflicts with custom_team_role_id. One of standard_team_role or custom_team_role_id must be set.
    timeouts SsoGroupMappingTimeoutsArgs
    weight float
    Priority weight for conflict resolution. Lower numbers have higher priority. Must be between 1 and 32767. Default: 32767.
    groupName String
    The SSO group name to map. Maximum 256 characters.
    teamMap Property Map
    Block defining team mapping. Maximum 1 block.
    customTeamRoleId Number
    The ID of a custom role to assign to users. Conflicts with standard_team_role. One of standard_team_role or custom_team_role_id must be set.
    isAdmin Boolean
    Whether group members should be Sysdig administrators. Default: false.
    ssoGroupMappingId String
    The ID of the SSO group mapping.
    standardTeamRole String
    The standard team role assigned to users. Conflicts with custom_team_role_id. One of standard_team_role or custom_team_role_id must be set.
    timeouts Property Map
    weight Number
    Priority weight for conflict resolution. Lower numbers have higher priority. Must be between 1 and 32767. Default: 32767.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the SsoGroupMapping 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 SsoGroupMapping Resource

    Get an existing SsoGroupMapping 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?: SsoGroupMappingState, opts?: CustomResourceOptions): SsoGroupMapping
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            custom_team_role_id: Optional[float] = None,
            group_name: Optional[str] = None,
            is_admin: Optional[bool] = None,
            sso_group_mapping_id: Optional[str] = None,
            standard_team_role: Optional[str] = None,
            team_map: Optional[SsoGroupMappingTeamMapArgs] = None,
            timeouts: Optional[SsoGroupMappingTimeoutsArgs] = None,
            weight: Optional[float] = None) -> SsoGroupMapping
    func GetSsoGroupMapping(ctx *Context, name string, id IDInput, state *SsoGroupMappingState, opts ...ResourceOption) (*SsoGroupMapping, error)
    public static SsoGroupMapping Get(string name, Input<string> id, SsoGroupMappingState? state, CustomResourceOptions? opts = null)
    public static SsoGroupMapping get(String name, Output<String> id, SsoGroupMappingState state, CustomResourceOptions options)
    resources:  _:    type: sysdig:SsoGroupMapping    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:
    CustomTeamRoleId double
    The ID of a custom role to assign to users. Conflicts with standard_team_role. One of standard_team_role or custom_team_role_id must be set.
    GroupName string
    The SSO group name to map. Maximum 256 characters.
    IsAdmin bool
    Whether group members should be Sysdig administrators. Default: false.
    SsoGroupMappingId string
    The ID of the SSO group mapping.
    StandardTeamRole string
    The standard team role assigned to users. Conflicts with custom_team_role_id. One of standard_team_role or custom_team_role_id must be set.
    TeamMap SsoGroupMappingTeamMap
    Block defining team mapping. Maximum 1 block.
    Timeouts SsoGroupMappingTimeouts
    Weight double
    Priority weight for conflict resolution. Lower numbers have higher priority. Must be between 1 and 32767. Default: 32767.
    CustomTeamRoleId float64
    The ID of a custom role to assign to users. Conflicts with standard_team_role. One of standard_team_role or custom_team_role_id must be set.
    GroupName string
    The SSO group name to map. Maximum 256 characters.
    IsAdmin bool
    Whether group members should be Sysdig administrators. Default: false.
    SsoGroupMappingId string
    The ID of the SSO group mapping.
    StandardTeamRole string
    The standard team role assigned to users. Conflicts with custom_team_role_id. One of standard_team_role or custom_team_role_id must be set.
    TeamMap SsoGroupMappingTeamMapArgs
    Block defining team mapping. Maximum 1 block.
    Timeouts SsoGroupMappingTimeoutsArgs
    Weight float64
    Priority weight for conflict resolution. Lower numbers have higher priority. Must be between 1 and 32767. Default: 32767.
    customTeamRoleId Double
    The ID of a custom role to assign to users. Conflicts with standard_team_role. One of standard_team_role or custom_team_role_id must be set.
    groupName String
    The SSO group name to map. Maximum 256 characters.
    isAdmin Boolean
    Whether group members should be Sysdig administrators. Default: false.
    ssoGroupMappingId String
    The ID of the SSO group mapping.
    standardTeamRole String
    The standard team role assigned to users. Conflicts with custom_team_role_id. One of standard_team_role or custom_team_role_id must be set.
    teamMap SsoGroupMappingTeamMap
    Block defining team mapping. Maximum 1 block.
    timeouts SsoGroupMappingTimeouts
    weight Double
    Priority weight for conflict resolution. Lower numbers have higher priority. Must be between 1 and 32767. Default: 32767.
    customTeamRoleId number
    The ID of a custom role to assign to users. Conflicts with standard_team_role. One of standard_team_role or custom_team_role_id must be set.
    groupName string
    The SSO group name to map. Maximum 256 characters.
    isAdmin boolean
    Whether group members should be Sysdig administrators. Default: false.
    ssoGroupMappingId string
    The ID of the SSO group mapping.
    standardTeamRole string
    The standard team role assigned to users. Conflicts with custom_team_role_id. One of standard_team_role or custom_team_role_id must be set.
    teamMap SsoGroupMappingTeamMap
    Block defining team mapping. Maximum 1 block.
    timeouts SsoGroupMappingTimeouts
    weight number
    Priority weight for conflict resolution. Lower numbers have higher priority. Must be between 1 and 32767. Default: 32767.
    custom_team_role_id float
    The ID of a custom role to assign to users. Conflicts with standard_team_role. One of standard_team_role or custom_team_role_id must be set.
    group_name str
    The SSO group name to map. Maximum 256 characters.
    is_admin bool
    Whether group members should be Sysdig administrators. Default: false.
    sso_group_mapping_id str
    The ID of the SSO group mapping.
    standard_team_role str
    The standard team role assigned to users. Conflicts with custom_team_role_id. One of standard_team_role or custom_team_role_id must be set.
    team_map SsoGroupMappingTeamMapArgs
    Block defining team mapping. Maximum 1 block.
    timeouts SsoGroupMappingTimeoutsArgs
    weight float
    Priority weight for conflict resolution. Lower numbers have higher priority. Must be between 1 and 32767. Default: 32767.
    customTeamRoleId Number
    The ID of a custom role to assign to users. Conflicts with standard_team_role. One of standard_team_role or custom_team_role_id must be set.
    groupName String
    The SSO group name to map. Maximum 256 characters.
    isAdmin Boolean
    Whether group members should be Sysdig administrators. Default: false.
    ssoGroupMappingId String
    The ID of the SSO group mapping.
    standardTeamRole String
    The standard team role assigned to users. Conflicts with custom_team_role_id. One of standard_team_role or custom_team_role_id must be set.
    teamMap Property Map
    Block defining team mapping. Maximum 1 block.
    timeouts Property Map
    weight Number
    Priority weight for conflict resolution. Lower numbers have higher priority. Must be between 1 and 32767. Default: 32767.

    Supporting Types

    SsoGroupMappingTeamMap, SsoGroupMappingTeamMapArgs

    IsForAllTeams bool
    Whether the mapping applies to all teams.
    TeamIds List<double>
    List of team IDs. Required when is_for_all_teams is false.
    IsForAllTeams bool
    Whether the mapping applies to all teams.
    TeamIds []float64
    List of team IDs. Required when is_for_all_teams is false.
    isForAllTeams Boolean
    Whether the mapping applies to all teams.
    teamIds List<Double>
    List of team IDs. Required when is_for_all_teams is false.
    isForAllTeams boolean
    Whether the mapping applies to all teams.
    teamIds number[]
    List of team IDs. Required when is_for_all_teams is false.
    is_for_all_teams bool
    Whether the mapping applies to all teams.
    team_ids Sequence[float]
    List of team IDs. Required when is_for_all_teams is false.
    isForAllTeams Boolean
    Whether the mapping applies to all teams.
    teamIds List<Number>
    List of team IDs. Required when is_for_all_teams is false.

    SsoGroupMappingTimeouts, SsoGroupMappingTimeoutsArgs

    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 can be imported using the ID:

    $ pulumi import sysdig:index/ssoGroupMapping:SsoGroupMapping example 12345
    

    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.