published on Friday, Mar 6, 2026 by sysdiglabs
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:
- Group
Name string - The SSO group name to map. Maximum 256 characters.
- Team
Map SsoGroup Mapping Team Map - Block defining team mapping. Maximum 1 block.
- Custom
Team doubleRole Id - The ID of a custom role to assign to users. Conflicts with
standard_team_role. One ofstandard_team_roleorcustom_team_role_idmust be set. - Is
Admin bool - Whether group members should be Sysdig administrators. Default:
false. - Sso
Group stringMapping Id - The ID of the SSO group mapping.
- Standard
Team stringRole - The standard team role assigned to users. Conflicts with
custom_team_role_id. One ofstandard_team_roleorcustom_team_role_idmust be set. - Timeouts
Sso
Group Mapping Timeouts - Weight double
- Priority weight for conflict resolution. Lower numbers have higher priority. Must be between 1 and 32767. Default:
32767.
- Group
Name string - The SSO group name to map. Maximum 256 characters.
- Team
Map SsoGroup Mapping Team Map Args - Block defining team mapping. Maximum 1 block.
- Custom
Team float64Role Id - The ID of a custom role to assign to users. Conflicts with
standard_team_role. One ofstandard_team_roleorcustom_team_role_idmust be set. - Is
Admin bool - Whether group members should be Sysdig administrators. Default:
false. - Sso
Group stringMapping Id - The ID of the SSO group mapping.
- Standard
Team stringRole - The standard team role assigned to users. Conflicts with
custom_team_role_id. One ofstandard_team_roleorcustom_team_role_idmust be set. - Timeouts
Sso
Group Mapping Timeouts Args - Weight float64
- Priority weight for conflict resolution. Lower numbers have higher priority. Must be between 1 and 32767. Default:
32767.
- group
Name String - The SSO group name to map. Maximum 256 characters.
- team
Map SsoGroup Mapping Team Map - Block defining team mapping. Maximum 1 block.
- custom
Team DoubleRole Id - The ID of a custom role to assign to users. Conflicts with
standard_team_role. One ofstandard_team_roleorcustom_team_role_idmust be set. - is
Admin Boolean - Whether group members should be Sysdig administrators. Default:
false. - sso
Group StringMapping Id - The ID of the SSO group mapping.
- standard
Team StringRole - The standard team role assigned to users. Conflicts with
custom_team_role_id. One ofstandard_team_roleorcustom_team_role_idmust be set. - timeouts
Sso
Group Mapping Timeouts - weight Double
- Priority weight for conflict resolution. Lower numbers have higher priority. Must be between 1 and 32767. Default:
32767.
- group
Name string - The SSO group name to map. Maximum 256 characters.
- team
Map SsoGroup Mapping Team Map - Block defining team mapping. Maximum 1 block.
- custom
Team numberRole Id - The ID of a custom role to assign to users. Conflicts with
standard_team_role. One ofstandard_team_roleorcustom_team_role_idmust be set. - is
Admin boolean - Whether group members should be Sysdig administrators. Default:
false. - sso
Group stringMapping Id - The ID of the SSO group mapping.
- standard
Team stringRole - The standard team role assigned to users. Conflicts with
custom_team_role_id. One ofstandard_team_roleorcustom_team_role_idmust be set. - timeouts
Sso
Group Mapping Timeouts - 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 SsoGroup Mapping Team Map Args - Block defining team mapping. Maximum 1 block.
- custom_
team_ floatrole_ id - The ID of a custom role to assign to users. Conflicts with
standard_team_role. One ofstandard_team_roleorcustom_team_role_idmust be set. - is_
admin bool - Whether group members should be Sysdig administrators. Default:
false. - sso_
group_ strmapping_ id - The ID of the SSO group mapping.
- standard_
team_ strrole - The standard team role assigned to users. Conflicts with
custom_team_role_id. One ofstandard_team_roleorcustom_team_role_idmust be set. - timeouts
Sso
Group Mapping Timeouts Args - weight float
- Priority weight for conflict resolution. Lower numbers have higher priority. Must be between 1 and 32767. Default:
32767.
- group
Name String - The SSO group name to map. Maximum 256 characters.
- team
Map Property Map - Block defining team mapping. Maximum 1 block.
- custom
Team NumberRole Id - The ID of a custom role to assign to users. Conflicts with
standard_team_role. One ofstandard_team_roleorcustom_team_role_idmust be set. - is
Admin Boolean - Whether group members should be Sysdig administrators. Default:
false. - sso
Group StringMapping Id - The ID of the SSO group mapping.
- standard
Team StringRole - The standard team role assigned to users. Conflicts with
custom_team_role_id. One ofstandard_team_roleorcustom_team_role_idmust 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) -> SsoGroupMappingfunc 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.
- Custom
Team doubleRole Id - The ID of a custom role to assign to users. Conflicts with
standard_team_role. One ofstandard_team_roleorcustom_team_role_idmust be set. - Group
Name string - The SSO group name to map. Maximum 256 characters.
- Is
Admin bool - Whether group members should be Sysdig administrators. Default:
false. - Sso
Group stringMapping Id - The ID of the SSO group mapping.
- Standard
Team stringRole - The standard team role assigned to users. Conflicts with
custom_team_role_id. One ofstandard_team_roleorcustom_team_role_idmust be set. - Team
Map SsoGroup Mapping Team Map - Block defining team mapping. Maximum 1 block.
- Timeouts
Sso
Group Mapping Timeouts - Weight double
- Priority weight for conflict resolution. Lower numbers have higher priority. Must be between 1 and 32767. Default:
32767.
- Custom
Team float64Role Id - The ID of a custom role to assign to users. Conflicts with
standard_team_role. One ofstandard_team_roleorcustom_team_role_idmust be set. - Group
Name string - The SSO group name to map. Maximum 256 characters.
- Is
Admin bool - Whether group members should be Sysdig administrators. Default:
false. - Sso
Group stringMapping Id - The ID of the SSO group mapping.
- Standard
Team stringRole - The standard team role assigned to users. Conflicts with
custom_team_role_id. One ofstandard_team_roleorcustom_team_role_idmust be set. - Team
Map SsoGroup Mapping Team Map Args - Block defining team mapping. Maximum 1 block.
- Timeouts
Sso
Group Mapping Timeouts Args - Weight float64
- Priority weight for conflict resolution. Lower numbers have higher priority. Must be between 1 and 32767. Default:
32767.
- custom
Team DoubleRole Id - The ID of a custom role to assign to users. Conflicts with
standard_team_role. One ofstandard_team_roleorcustom_team_role_idmust be set. - group
Name String - The SSO group name to map. Maximum 256 characters.
- is
Admin Boolean - Whether group members should be Sysdig administrators. Default:
false. - sso
Group StringMapping Id - The ID of the SSO group mapping.
- standard
Team StringRole - The standard team role assigned to users. Conflicts with
custom_team_role_id. One ofstandard_team_roleorcustom_team_role_idmust be set. - team
Map SsoGroup Mapping Team Map - Block defining team mapping. Maximum 1 block.
- timeouts
Sso
Group Mapping Timeouts - weight Double
- Priority weight for conflict resolution. Lower numbers have higher priority. Must be between 1 and 32767. Default:
32767.
- custom
Team numberRole Id - The ID of a custom role to assign to users. Conflicts with
standard_team_role. One ofstandard_team_roleorcustom_team_role_idmust be set. - group
Name string - The SSO group name to map. Maximum 256 characters.
- is
Admin boolean - Whether group members should be Sysdig administrators. Default:
false. - sso
Group stringMapping Id - The ID of the SSO group mapping.
- standard
Team stringRole - The standard team role assigned to users. Conflicts with
custom_team_role_id. One ofstandard_team_roleorcustom_team_role_idmust be set. - team
Map SsoGroup Mapping Team Map - Block defining team mapping. Maximum 1 block.
- timeouts
Sso
Group Mapping Timeouts - weight number
- Priority weight for conflict resolution. Lower numbers have higher priority. Must be between 1 and 32767. Default:
32767.
- custom_
team_ floatrole_ id - The ID of a custom role to assign to users. Conflicts with
standard_team_role. One ofstandard_team_roleorcustom_team_role_idmust 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_ strmapping_ id - The ID of the SSO group mapping.
- standard_
team_ strrole - The standard team role assigned to users. Conflicts with
custom_team_role_id. One ofstandard_team_roleorcustom_team_role_idmust be set. - team_
map SsoGroup Mapping Team Map Args - Block defining team mapping. Maximum 1 block.
- timeouts
Sso
Group Mapping Timeouts Args - weight float
- Priority weight for conflict resolution. Lower numbers have higher priority. Must be between 1 and 32767. Default:
32767.
- custom
Team NumberRole Id - The ID of a custom role to assign to users. Conflicts with
standard_team_role. One ofstandard_team_roleorcustom_team_role_idmust be set. - group
Name String - The SSO group name to map. Maximum 256 characters.
- is
Admin Boolean - Whether group members should be Sysdig administrators. Default:
false. - sso
Group StringMapping Id - The ID of the SSO group mapping.
- standard
Team StringRole - The standard team role assigned to users. Conflicts with
custom_team_role_id. One ofstandard_team_roleorcustom_team_role_idmust be set. - team
Map 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
- Is
For boolAll Teams - Whether the mapping applies to all teams.
- Team
Ids List<double> - List of team IDs. Required when
is_for_all_teamsisfalse.
- Is
For boolAll Teams - Whether the mapping applies to all teams.
- Team
Ids []float64 - List of team IDs. Required when
is_for_all_teamsisfalse.
- is
For BooleanAll Teams - Whether the mapping applies to all teams.
- team
Ids List<Double> - List of team IDs. Required when
is_for_all_teamsisfalse.
- is
For booleanAll Teams - Whether the mapping applies to all teams.
- team
Ids number[] - List of team IDs. Required when
is_for_all_teamsisfalse.
- is_
for_ boolall_ teams - Whether the mapping applies to all teams.
- team_
ids Sequence[float] - List of team IDs. Required when
is_for_all_teamsisfalse.
- is
For BooleanAll Teams - Whether the mapping applies to all teams.
- team
Ids List<Number> - List of team IDs. Required when
is_for_all_teamsisfalse.
SsoGroupMappingTimeouts, SsoGroupMappingTimeoutsArgs
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
sysdigTerraform Provider.
published on Friday, Mar 6, 2026 by sysdiglabs
