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

    import * as pulumi from "@pulumi/pulumi";
    import * as sysdig from "@pulumi/sysdig";
    
    const monitor = new sysdig.SsoGlobalSettings("monitor", {
        product: "monitor",
        isPasswordLoginEnabled: true,
    });
    const secure = new sysdig.SsoGlobalSettings("secure", {
        product: "secure",
        isPasswordLoginEnabled: false,
    });
    
    import pulumi
    import pulumi_sysdig as sysdig
    
    monitor = sysdig.SsoGlobalSettings("monitor",
        product="monitor",
        is_password_login_enabled=True)
    secure = sysdig.SsoGlobalSettings("secure",
        product="secure",
        is_password_login_enabled=False)
    
    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.NewSsoGlobalSettings(ctx, "monitor", &sysdig.SsoGlobalSettingsArgs{
    			Product:                pulumi.String("monitor"),
    			IsPasswordLoginEnabled: pulumi.Bool(true),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = sysdig.NewSsoGlobalSettings(ctx, "secure", &sysdig.SsoGlobalSettingsArgs{
    			Product:                pulumi.String("secure"),
    			IsPasswordLoginEnabled: pulumi.Bool(false),
    		})
    		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 monitor = new Sysdig.SsoGlobalSettings("monitor", new()
        {
            Product = "monitor",
            IsPasswordLoginEnabled = true,
        });
    
        var secure = new Sysdig.SsoGlobalSettings("secure", new()
        {
            Product = "secure",
            IsPasswordLoginEnabled = false,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.sysdig.SsoGlobalSettings;
    import com.pulumi.sysdig.SsoGlobalSettingsArgs;
    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 monitor = new SsoGlobalSettings("monitor", SsoGlobalSettingsArgs.builder()
                .product("monitor")
                .isPasswordLoginEnabled(true)
                .build());
    
            var secure = new SsoGlobalSettings("secure", SsoGlobalSettingsArgs.builder()
                .product("secure")
                .isPasswordLoginEnabled(false)
                .build());
    
        }
    }
    
    resources:
      monitor:
        type: sysdig:SsoGlobalSettings
        properties:
          product: monitor
          isPasswordLoginEnabled: true
      secure:
        type: sysdig:SsoGlobalSettings
        properties:
          product: secure
          isPasswordLoginEnabled: false
    

    Create SsoGlobalSettings Resource

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

    Constructor syntax

    new SsoGlobalSettings(name: string, args: SsoGlobalSettingsArgs, opts?: CustomResourceOptions);
    @overload
    def SsoGlobalSettings(resource_name: str,
                          args: SsoGlobalSettingsArgs,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def SsoGlobalSettings(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          is_password_login_enabled: Optional[bool] = None,
                          product: Optional[str] = None,
                          sso_global_settings_id: Optional[str] = None,
                          timeouts: Optional[SsoGlobalSettingsTimeoutsArgs] = None)
    func NewSsoGlobalSettings(ctx *Context, name string, args SsoGlobalSettingsArgs, opts ...ResourceOption) (*SsoGlobalSettings, error)
    public SsoGlobalSettings(string name, SsoGlobalSettingsArgs args, CustomResourceOptions? opts = null)
    public SsoGlobalSettings(String name, SsoGlobalSettingsArgs args)
    public SsoGlobalSettings(String name, SsoGlobalSettingsArgs args, CustomResourceOptions options)
    
    type: sysdig:SsoGlobalSettings
    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 SsoGlobalSettingsArgs
    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 SsoGlobalSettingsArgs
    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 SsoGlobalSettingsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SsoGlobalSettingsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SsoGlobalSettingsArgs
    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 ssoGlobalSettingsResource = new Sysdig.SsoGlobalSettings("ssoGlobalSettingsResource", new()
    {
        IsPasswordLoginEnabled = false,
        Product = "string",
        SsoGlobalSettingsId = "string",
        Timeouts = new Sysdig.Inputs.SsoGlobalSettingsTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Read = "string",
            Update = "string",
        },
    });
    
    example, err := sysdig.NewSsoGlobalSettings(ctx, "ssoGlobalSettingsResource", &sysdig.SsoGlobalSettingsArgs{
    	IsPasswordLoginEnabled: pulumi.Bool(false),
    	Product:                pulumi.String("string"),
    	SsoGlobalSettingsId:    pulumi.String("string"),
    	Timeouts: &sysdig.SsoGlobalSettingsTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Read:   pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    })
    
    var ssoGlobalSettingsResource = new SsoGlobalSettings("ssoGlobalSettingsResource", SsoGlobalSettingsArgs.builder()
        .isPasswordLoginEnabled(false)
        .product("string")
        .ssoGlobalSettingsId("string")
        .timeouts(SsoGlobalSettingsTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .read("string")
            .update("string")
            .build())
        .build());
    
    sso_global_settings_resource = sysdig.SsoGlobalSettings("ssoGlobalSettingsResource",
        is_password_login_enabled=False,
        product="string",
        sso_global_settings_id="string",
        timeouts={
            "create": "string",
            "delete": "string",
            "read": "string",
            "update": "string",
        })
    
    const ssoGlobalSettingsResource = new sysdig.SsoGlobalSettings("ssoGlobalSettingsResource", {
        isPasswordLoginEnabled: false,
        product: "string",
        ssoGlobalSettingsId: "string",
        timeouts: {
            create: "string",
            "delete": "string",
            read: "string",
            update: "string",
        },
    });
    
    type: sysdig:SsoGlobalSettings
    properties:
        isPasswordLoginEnabled: false
        product: string
        ssoGlobalSettingsId: string
        timeouts:
            create: string
            delete: string
            read: string
            update: string
    

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

    IsPasswordLoginEnabled bool
    Whether password-based login is enabled alongside SSO for this product.
    Product string
    The Sysdig product. Valid values: monitor, secure. Changing this forces creation of a new resource.
    SsoGlobalSettingsId string
    Timeouts SsoGlobalSettingsTimeouts
    IsPasswordLoginEnabled bool
    Whether password-based login is enabled alongside SSO for this product.
    Product string
    The Sysdig product. Valid values: monitor, secure. Changing this forces creation of a new resource.
    SsoGlobalSettingsId string
    Timeouts SsoGlobalSettingsTimeoutsArgs
    isPasswordLoginEnabled Boolean
    Whether password-based login is enabled alongside SSO for this product.
    product String
    The Sysdig product. Valid values: monitor, secure. Changing this forces creation of a new resource.
    ssoGlobalSettingsId String
    timeouts SsoGlobalSettingsTimeouts
    isPasswordLoginEnabled boolean
    Whether password-based login is enabled alongside SSO for this product.
    product string
    The Sysdig product. Valid values: monitor, secure. Changing this forces creation of a new resource.
    ssoGlobalSettingsId string
    timeouts SsoGlobalSettingsTimeouts
    is_password_login_enabled bool
    Whether password-based login is enabled alongside SSO for this product.
    product str
    The Sysdig product. Valid values: monitor, secure. Changing this forces creation of a new resource.
    sso_global_settings_id str
    timeouts SsoGlobalSettingsTimeoutsArgs
    isPasswordLoginEnabled Boolean
    Whether password-based login is enabled alongside SSO for this product.
    product String
    The Sysdig product. Valid values: monitor, secure. Changing this forces creation of a new resource.
    ssoGlobalSettingsId String
    timeouts Property Map

    Outputs

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

    Get an existing SsoGlobalSettings 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?: SsoGlobalSettingsState, opts?: CustomResourceOptions): SsoGlobalSettings
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            is_password_login_enabled: Optional[bool] = None,
            product: Optional[str] = None,
            sso_global_settings_id: Optional[str] = None,
            timeouts: Optional[SsoGlobalSettingsTimeoutsArgs] = None) -> SsoGlobalSettings
    func GetSsoGlobalSettings(ctx *Context, name string, id IDInput, state *SsoGlobalSettingsState, opts ...ResourceOption) (*SsoGlobalSettings, error)
    public static SsoGlobalSettings Get(string name, Input<string> id, SsoGlobalSettingsState? state, CustomResourceOptions? opts = null)
    public static SsoGlobalSettings get(String name, Output<String> id, SsoGlobalSettingsState state, CustomResourceOptions options)
    resources:  _:    type: sysdig:SsoGlobalSettings    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:
    IsPasswordLoginEnabled bool
    Whether password-based login is enabled alongside SSO for this product.
    Product string
    The Sysdig product. Valid values: monitor, secure. Changing this forces creation of a new resource.
    SsoGlobalSettingsId string
    Timeouts SsoGlobalSettingsTimeouts
    IsPasswordLoginEnabled bool
    Whether password-based login is enabled alongside SSO for this product.
    Product string
    The Sysdig product. Valid values: monitor, secure. Changing this forces creation of a new resource.
    SsoGlobalSettingsId string
    Timeouts SsoGlobalSettingsTimeoutsArgs
    isPasswordLoginEnabled Boolean
    Whether password-based login is enabled alongside SSO for this product.
    product String
    The Sysdig product. Valid values: monitor, secure. Changing this forces creation of a new resource.
    ssoGlobalSettingsId String
    timeouts SsoGlobalSettingsTimeouts
    isPasswordLoginEnabled boolean
    Whether password-based login is enabled alongside SSO for this product.
    product string
    The Sysdig product. Valid values: monitor, secure. Changing this forces creation of a new resource.
    ssoGlobalSettingsId string
    timeouts SsoGlobalSettingsTimeouts
    is_password_login_enabled bool
    Whether password-based login is enabled alongside SSO for this product.
    product str
    The Sysdig product. Valid values: monitor, secure. Changing this forces creation of a new resource.
    sso_global_settings_id str
    timeouts SsoGlobalSettingsTimeoutsArgs
    isPasswordLoginEnabled Boolean
    Whether password-based login is enabled alongside SSO for this product.
    product String
    The Sysdig product. Valid values: monitor, secure. Changing this forces creation of a new resource.
    ssoGlobalSettingsId String
    timeouts Property Map

    Supporting Types

    SsoGlobalSettingsTimeouts, SsoGlobalSettingsTimeoutsArgs

    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 global settings can be imported using the product name:

    $ pulumi import sysdig:index/ssoGlobalSettings:SsoGlobalSettings monitor monitor
    
    $ pulumi import sysdig:index/ssoGlobalSettings:SsoGlobalSettings secure secure
    

    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.