1. Packages
  2. Spectrocloud Provider
  3. API Docs
  4. PlatformSetting
spectrocloud 0.23.5 published on Sunday, Apr 20, 2025 by spectrocloud

spectrocloud.PlatformSetting

Explore with Pulumi AI

spectrocloud logo
spectrocloud 0.23.5 published on Sunday, Apr 20, 2025 by spectrocloud

    Tenant/Project administration can be achieved through platform settings such as session_timeout, agent_upgrade, login_banner, and cluster_remediation.Platform Setting guide.

    The tenant_platform_setting resource enforces settings across projects. By default, it is configured with Palette’s default values. Users can customize settings as needed. Destroying the spectrocloud.PlatformSetting resource resets it to Palette defaults.

    Example Usage

    An example of managing an developer setting in Palette.

    import * as pulumi from "@pulumi/pulumi";
    import * as spectrocloud from "@pulumi/spectrocloud";
    
    const platformSettings = new spectrocloud.PlatformSetting("platformSettings", {
        clusterAutoRemediation: false,
        context: "tenant",
        enableAutoRemediation: true,
        loginBanner: {
            message: "test",
            title: "test",
        },
        nonFipsAddonPack: true,
        nonFipsClusterImport: true,
        nonFipsFeatures: true,
        pauseAgentUpgrades: "lock",
        sessionTimeout: 230,
    });
    
    import pulumi
    import pulumi_spectrocloud as spectrocloud
    
    platform_settings = spectrocloud.PlatformSetting("platformSettings",
        cluster_auto_remediation=False,
        context="tenant",
        enable_auto_remediation=True,
        login_banner={
            "message": "test",
            "title": "test",
        },
        non_fips_addon_pack=True,
        non_fips_cluster_import=True,
        non_fips_features=True,
        pause_agent_upgrades="lock",
        session_timeout=230)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/spectrocloud/spectrocloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := spectrocloud.NewPlatformSetting(ctx, "platformSettings", &spectrocloud.PlatformSettingArgs{
    			ClusterAutoRemediation: pulumi.Bool(false),
    			Context:                pulumi.String("tenant"),
    			EnableAutoRemediation:  pulumi.Bool(true),
    			LoginBanner: &spectrocloud.PlatformSettingLoginBannerArgs{
    				Message: pulumi.String("test"),
    				Title:   pulumi.String("test"),
    			},
    			NonFipsAddonPack:     pulumi.Bool(true),
    			NonFipsClusterImport: pulumi.Bool(true),
    			NonFipsFeatures:      pulumi.Bool(true),
    			PauseAgentUpgrades:   pulumi.String("lock"),
    			SessionTimeout:       pulumi.Float64(230),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Spectrocloud = Pulumi.Spectrocloud;
    
    return await Deployment.RunAsync(() => 
    {
        var platformSettings = new Spectrocloud.PlatformSetting("platformSettings", new()
        {
            ClusterAutoRemediation = false,
            Context = "tenant",
            EnableAutoRemediation = true,
            LoginBanner = new Spectrocloud.Inputs.PlatformSettingLoginBannerArgs
            {
                Message = "test",
                Title = "test",
            },
            NonFipsAddonPack = true,
            NonFipsClusterImport = true,
            NonFipsFeatures = true,
            PauseAgentUpgrades = "lock",
            SessionTimeout = 230,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.spectrocloud.PlatformSetting;
    import com.pulumi.spectrocloud.PlatformSettingArgs;
    import com.pulumi.spectrocloud.inputs.PlatformSettingLoginBannerArgs;
    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 platformSettings = new PlatformSetting("platformSettings", PlatformSettingArgs.builder()
                .clusterAutoRemediation(false)
                .context("tenant")
                .enableAutoRemediation(true)
                .loginBanner(PlatformSettingLoginBannerArgs.builder()
                    .message("test")
                    .title("test")
                    .build())
                .nonFipsAddonPack(true)
                .nonFipsClusterImport(true)
                .nonFipsFeatures(true)
                .pauseAgentUpgrades("lock")
                .sessionTimeout(230)
                .build());
    
        }
    }
    
    resources:
      platformSettings:
        type: spectrocloud:PlatformSetting
        properties:
          clusterAutoRemediation: false
          context: tenant
          enableAutoRemediation: true
          loginBanner:
            message: test
            title: test
          nonFipsAddonPack: true
          nonFipsClusterImport: true
          nonFipsFeatures: true
          pauseAgentUpgrades: lock
          sessionTimeout: 230
    

    Create PlatformSetting Resource

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

    Constructor syntax

    new PlatformSetting(name: string, args?: PlatformSettingArgs, opts?: CustomResourceOptions);
    @overload
    def PlatformSetting(resource_name: str,
                        args: Optional[PlatformSettingArgs] = None,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def PlatformSetting(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        cluster_auto_remediation: Optional[bool] = None,
                        context: Optional[str] = None,
                        enable_auto_remediation: Optional[bool] = None,
                        login_banner: Optional[PlatformSettingLoginBannerArgs] = None,
                        non_fips_addon_pack: Optional[bool] = None,
                        non_fips_cluster_import: Optional[bool] = None,
                        non_fips_features: Optional[bool] = None,
                        pause_agent_upgrades: Optional[str] = None,
                        platform_setting_id: Optional[str] = None,
                        session_timeout: Optional[float] = None,
                        timeouts: Optional[PlatformSettingTimeoutsArgs] = None)
    func NewPlatformSetting(ctx *Context, name string, args *PlatformSettingArgs, opts ...ResourceOption) (*PlatformSetting, error)
    public PlatformSetting(string name, PlatformSettingArgs? args = null, CustomResourceOptions? opts = null)
    public PlatformSetting(String name, PlatformSettingArgs args)
    public PlatformSetting(String name, PlatformSettingArgs args, CustomResourceOptions options)
    
    type: spectrocloud:PlatformSetting
    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 PlatformSettingArgs
    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 PlatformSettingArgs
    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 PlatformSettingArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PlatformSettingArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PlatformSettingArgs
    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 platformSettingResource = new Spectrocloud.PlatformSetting("platformSettingResource", new()
    {
        ClusterAutoRemediation = false,
        Context = "string",
        EnableAutoRemediation = false,
        LoginBanner = new Spectrocloud.Inputs.PlatformSettingLoginBannerArgs
        {
            Message = "string",
            Title = "string",
        },
        NonFipsAddonPack = false,
        NonFipsClusterImport = false,
        NonFipsFeatures = false,
        PauseAgentUpgrades = "string",
        PlatformSettingId = "string",
        SessionTimeout = 0,
        Timeouts = new Spectrocloud.Inputs.PlatformSettingTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Update = "string",
        },
    });
    
    example, err := spectrocloud.NewPlatformSetting(ctx, "platformSettingResource", &spectrocloud.PlatformSettingArgs{
    	ClusterAutoRemediation: pulumi.Bool(false),
    	Context:                pulumi.String("string"),
    	EnableAutoRemediation:  pulumi.Bool(false),
    	LoginBanner: &spectrocloud.PlatformSettingLoginBannerArgs{
    		Message: pulumi.String("string"),
    		Title:   pulumi.String("string"),
    	},
    	NonFipsAddonPack:     pulumi.Bool(false),
    	NonFipsClusterImport: pulumi.Bool(false),
    	NonFipsFeatures:      pulumi.Bool(false),
    	PauseAgentUpgrades:   pulumi.String("string"),
    	PlatformSettingId:    pulumi.String("string"),
    	SessionTimeout:       pulumi.Float64(0),
    	Timeouts: &spectrocloud.PlatformSettingTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    })
    
    var platformSettingResource = new PlatformSetting("platformSettingResource", PlatformSettingArgs.builder()
        .clusterAutoRemediation(false)
        .context("string")
        .enableAutoRemediation(false)
        .loginBanner(PlatformSettingLoginBannerArgs.builder()
            .message("string")
            .title("string")
            .build())
        .nonFipsAddonPack(false)
        .nonFipsClusterImport(false)
        .nonFipsFeatures(false)
        .pauseAgentUpgrades("string")
        .platformSettingId("string")
        .sessionTimeout(0)
        .timeouts(PlatformSettingTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .update("string")
            .build())
        .build());
    
    platform_setting_resource = spectrocloud.PlatformSetting("platformSettingResource",
        cluster_auto_remediation=False,
        context="string",
        enable_auto_remediation=False,
        login_banner={
            "message": "string",
            "title": "string",
        },
        non_fips_addon_pack=False,
        non_fips_cluster_import=False,
        non_fips_features=False,
        pause_agent_upgrades="string",
        platform_setting_id="string",
        session_timeout=0,
        timeouts={
            "create": "string",
            "delete": "string",
            "update": "string",
        })
    
    const platformSettingResource = new spectrocloud.PlatformSetting("platformSettingResource", {
        clusterAutoRemediation: false,
        context: "string",
        enableAutoRemediation: false,
        loginBanner: {
            message: "string",
            title: "string",
        },
        nonFipsAddonPack: false,
        nonFipsClusterImport: false,
        nonFipsFeatures: false,
        pauseAgentUpgrades: "string",
        platformSettingId: "string",
        sessionTimeout: 0,
        timeouts: {
            create: "string",
            "delete": "string",
            update: "string",
        },
    });
    
    type: spectrocloud:PlatformSetting
    properties:
        clusterAutoRemediation: false
        context: string
        enableAutoRemediation: false
        loginBanner:
            message: string
            title: string
        nonFipsAddonPack: false
        nonFipsClusterImport: false
        nonFipsFeatures: false
        pauseAgentUpgrades: string
        platformSettingId: string
        sessionTimeout: 0
        timeouts:
            create: string
            delete: string
            update: string
    

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

    ClusterAutoRemediation bool
    Enables automatic remediation for unhealthy nodes in Palette-provisioned clusters by replacing them with new nodes. Disabling this feature prevents auto-remediation. Not applicable to EKS, AKS, or TKE clusters.
    Context string
    Defines the scope of the platform setting. Valid values are project or tenant. By default, it is set to tenant. If the project context is specified, the project name will sourced from the provider configuration parameter project_name.
    EnableAutoRemediation bool
    Enables automatic remediation. set only with `project' context
    LoginBanner PlatformSettingLoginBanner
    Configure a login banner that users must acknowledge before signing in.
    NonFipsAddonPack bool
    Allows users in this tenant to use non-FIPS-compliant addon packs when creating cluster profiles. The non_fips_addon_pack only supported in palette vertex environment.
    NonFipsClusterImport bool
    Allows users in this tenant to import clusters, but the imported clusters may not be FIPS-compliant. The non_fips_cluster_import only supported in palette vertex environment.
    NonFipsFeatures bool
    Allows users in this tenant to access non-FIPS-compliant features such as backup, restore, and scans. The non_fips_features only supported in palette vertex environment.
    PauseAgentUpgrades string
    Controls automatic upgrades for Palette components and agents in clusters deployed under a tenant or project. Setting it to lock disables automatic upgrades, while unlock (default) allows automatic upgrades.
    PlatformSettingId string
    The ID of this resource.
    SessionTimeout double
    Specifies the duration (in minutes) of inactivity before a user is automatically logged out. The default is 240 minutes allowed in Palette
    Timeouts PlatformSettingTimeouts
    ClusterAutoRemediation bool
    Enables automatic remediation for unhealthy nodes in Palette-provisioned clusters by replacing them with new nodes. Disabling this feature prevents auto-remediation. Not applicable to EKS, AKS, or TKE clusters.
    Context string
    Defines the scope of the platform setting. Valid values are project or tenant. By default, it is set to tenant. If the project context is specified, the project name will sourced from the provider configuration parameter project_name.
    EnableAutoRemediation bool
    Enables automatic remediation. set only with `project' context
    LoginBanner PlatformSettingLoginBannerArgs
    Configure a login banner that users must acknowledge before signing in.
    NonFipsAddonPack bool
    Allows users in this tenant to use non-FIPS-compliant addon packs when creating cluster profiles. The non_fips_addon_pack only supported in palette vertex environment.
    NonFipsClusterImport bool
    Allows users in this tenant to import clusters, but the imported clusters may not be FIPS-compliant. The non_fips_cluster_import only supported in palette vertex environment.
    NonFipsFeatures bool
    Allows users in this tenant to access non-FIPS-compliant features such as backup, restore, and scans. The non_fips_features only supported in palette vertex environment.
    PauseAgentUpgrades string
    Controls automatic upgrades for Palette components and agents in clusters deployed under a tenant or project. Setting it to lock disables automatic upgrades, while unlock (default) allows automatic upgrades.
    PlatformSettingId string
    The ID of this resource.
    SessionTimeout float64
    Specifies the duration (in minutes) of inactivity before a user is automatically logged out. The default is 240 minutes allowed in Palette
    Timeouts PlatformSettingTimeoutsArgs
    clusterAutoRemediation Boolean
    Enables automatic remediation for unhealthy nodes in Palette-provisioned clusters by replacing them with new nodes. Disabling this feature prevents auto-remediation. Not applicable to EKS, AKS, or TKE clusters.
    context String
    Defines the scope of the platform setting. Valid values are project or tenant. By default, it is set to tenant. If the project context is specified, the project name will sourced from the provider configuration parameter project_name.
    enableAutoRemediation Boolean
    Enables automatic remediation. set only with `project' context
    loginBanner PlatformSettingLoginBanner
    Configure a login banner that users must acknowledge before signing in.
    nonFipsAddonPack Boolean
    Allows users in this tenant to use non-FIPS-compliant addon packs when creating cluster profiles. The non_fips_addon_pack only supported in palette vertex environment.
    nonFipsClusterImport Boolean
    Allows users in this tenant to import clusters, but the imported clusters may not be FIPS-compliant. The non_fips_cluster_import only supported in palette vertex environment.
    nonFipsFeatures Boolean
    Allows users in this tenant to access non-FIPS-compliant features such as backup, restore, and scans. The non_fips_features only supported in palette vertex environment.
    pauseAgentUpgrades String
    Controls automatic upgrades for Palette components and agents in clusters deployed under a tenant or project. Setting it to lock disables automatic upgrades, while unlock (default) allows automatic upgrades.
    platformSettingId String
    The ID of this resource.
    sessionTimeout Double
    Specifies the duration (in minutes) of inactivity before a user is automatically logged out. The default is 240 minutes allowed in Palette
    timeouts PlatformSettingTimeouts
    clusterAutoRemediation boolean
    Enables automatic remediation for unhealthy nodes in Palette-provisioned clusters by replacing them with new nodes. Disabling this feature prevents auto-remediation. Not applicable to EKS, AKS, or TKE clusters.
    context string
    Defines the scope of the platform setting. Valid values are project or tenant. By default, it is set to tenant. If the project context is specified, the project name will sourced from the provider configuration parameter project_name.
    enableAutoRemediation boolean
    Enables automatic remediation. set only with `project' context
    loginBanner PlatformSettingLoginBanner
    Configure a login banner that users must acknowledge before signing in.
    nonFipsAddonPack boolean
    Allows users in this tenant to use non-FIPS-compliant addon packs when creating cluster profiles. The non_fips_addon_pack only supported in palette vertex environment.
    nonFipsClusterImport boolean
    Allows users in this tenant to import clusters, but the imported clusters may not be FIPS-compliant. The non_fips_cluster_import only supported in palette vertex environment.
    nonFipsFeatures boolean
    Allows users in this tenant to access non-FIPS-compliant features such as backup, restore, and scans. The non_fips_features only supported in palette vertex environment.
    pauseAgentUpgrades string
    Controls automatic upgrades for Palette components and agents in clusters deployed under a tenant or project. Setting it to lock disables automatic upgrades, while unlock (default) allows automatic upgrades.
    platformSettingId string
    The ID of this resource.
    sessionTimeout number
    Specifies the duration (in minutes) of inactivity before a user is automatically logged out. The default is 240 minutes allowed in Palette
    timeouts PlatformSettingTimeouts
    cluster_auto_remediation bool
    Enables automatic remediation for unhealthy nodes in Palette-provisioned clusters by replacing them with new nodes. Disabling this feature prevents auto-remediation. Not applicable to EKS, AKS, or TKE clusters.
    context str
    Defines the scope of the platform setting. Valid values are project or tenant. By default, it is set to tenant. If the project context is specified, the project name will sourced from the provider configuration parameter project_name.
    enable_auto_remediation bool
    Enables automatic remediation. set only with `project' context
    login_banner PlatformSettingLoginBannerArgs
    Configure a login banner that users must acknowledge before signing in.
    non_fips_addon_pack bool
    Allows users in this tenant to use non-FIPS-compliant addon packs when creating cluster profiles. The non_fips_addon_pack only supported in palette vertex environment.
    non_fips_cluster_import bool
    Allows users in this tenant to import clusters, but the imported clusters may not be FIPS-compliant. The non_fips_cluster_import only supported in palette vertex environment.
    non_fips_features bool
    Allows users in this tenant to access non-FIPS-compliant features such as backup, restore, and scans. The non_fips_features only supported in palette vertex environment.
    pause_agent_upgrades str
    Controls automatic upgrades for Palette components and agents in clusters deployed under a tenant or project. Setting it to lock disables automatic upgrades, while unlock (default) allows automatic upgrades.
    platform_setting_id str
    The ID of this resource.
    session_timeout float
    Specifies the duration (in minutes) of inactivity before a user is automatically logged out. The default is 240 minutes allowed in Palette
    timeouts PlatformSettingTimeoutsArgs
    clusterAutoRemediation Boolean
    Enables automatic remediation for unhealthy nodes in Palette-provisioned clusters by replacing them with new nodes. Disabling this feature prevents auto-remediation. Not applicable to EKS, AKS, or TKE clusters.
    context String
    Defines the scope of the platform setting. Valid values are project or tenant. By default, it is set to tenant. If the project context is specified, the project name will sourced from the provider configuration parameter project_name.
    enableAutoRemediation Boolean
    Enables automatic remediation. set only with `project' context
    loginBanner Property Map
    Configure a login banner that users must acknowledge before signing in.
    nonFipsAddonPack Boolean
    Allows users in this tenant to use non-FIPS-compliant addon packs when creating cluster profiles. The non_fips_addon_pack only supported in palette vertex environment.
    nonFipsClusterImport Boolean
    Allows users in this tenant to import clusters, but the imported clusters may not be FIPS-compliant. The non_fips_cluster_import only supported in palette vertex environment.
    nonFipsFeatures Boolean
    Allows users in this tenant to access non-FIPS-compliant features such as backup, restore, and scans. The non_fips_features only supported in palette vertex environment.
    pauseAgentUpgrades String
    Controls automatic upgrades for Palette components and agents in clusters deployed under a tenant or project. Setting it to lock disables automatic upgrades, while unlock (default) allows automatic upgrades.
    platformSettingId String
    The ID of this resource.
    sessionTimeout Number
    Specifies the duration (in minutes) of inactivity before a user is automatically logged out. The default is 240 minutes allowed in Palette
    timeouts Property Map

    Outputs

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

    Get an existing PlatformSetting 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?: PlatformSettingState, opts?: CustomResourceOptions): PlatformSetting
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cluster_auto_remediation: Optional[bool] = None,
            context: Optional[str] = None,
            enable_auto_remediation: Optional[bool] = None,
            login_banner: Optional[PlatformSettingLoginBannerArgs] = None,
            non_fips_addon_pack: Optional[bool] = None,
            non_fips_cluster_import: Optional[bool] = None,
            non_fips_features: Optional[bool] = None,
            pause_agent_upgrades: Optional[str] = None,
            platform_setting_id: Optional[str] = None,
            session_timeout: Optional[float] = None,
            timeouts: Optional[PlatformSettingTimeoutsArgs] = None) -> PlatformSetting
    func GetPlatformSetting(ctx *Context, name string, id IDInput, state *PlatformSettingState, opts ...ResourceOption) (*PlatformSetting, error)
    public static PlatformSetting Get(string name, Input<string> id, PlatformSettingState? state, CustomResourceOptions? opts = null)
    public static PlatformSetting get(String name, Output<String> id, PlatformSettingState state, CustomResourceOptions options)
    resources:  _:    type: spectrocloud:PlatformSetting    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:
    ClusterAutoRemediation bool
    Enables automatic remediation for unhealthy nodes in Palette-provisioned clusters by replacing them with new nodes. Disabling this feature prevents auto-remediation. Not applicable to EKS, AKS, or TKE clusters.
    Context string
    Defines the scope of the platform setting. Valid values are project or tenant. By default, it is set to tenant. If the project context is specified, the project name will sourced from the provider configuration parameter project_name.
    EnableAutoRemediation bool
    Enables automatic remediation. set only with `project' context
    LoginBanner PlatformSettingLoginBanner
    Configure a login banner that users must acknowledge before signing in.
    NonFipsAddonPack bool
    Allows users in this tenant to use non-FIPS-compliant addon packs when creating cluster profiles. The non_fips_addon_pack only supported in palette vertex environment.
    NonFipsClusterImport bool
    Allows users in this tenant to import clusters, but the imported clusters may not be FIPS-compliant. The non_fips_cluster_import only supported in palette vertex environment.
    NonFipsFeatures bool
    Allows users in this tenant to access non-FIPS-compliant features such as backup, restore, and scans. The non_fips_features only supported in palette vertex environment.
    PauseAgentUpgrades string
    Controls automatic upgrades for Palette components and agents in clusters deployed under a tenant or project. Setting it to lock disables automatic upgrades, while unlock (default) allows automatic upgrades.
    PlatformSettingId string
    The ID of this resource.
    SessionTimeout double
    Specifies the duration (in minutes) of inactivity before a user is automatically logged out. The default is 240 minutes allowed in Palette
    Timeouts PlatformSettingTimeouts
    ClusterAutoRemediation bool
    Enables automatic remediation for unhealthy nodes in Palette-provisioned clusters by replacing them with new nodes. Disabling this feature prevents auto-remediation. Not applicable to EKS, AKS, or TKE clusters.
    Context string
    Defines the scope of the platform setting. Valid values are project or tenant. By default, it is set to tenant. If the project context is specified, the project name will sourced from the provider configuration parameter project_name.
    EnableAutoRemediation bool
    Enables automatic remediation. set only with `project' context
    LoginBanner PlatformSettingLoginBannerArgs
    Configure a login banner that users must acknowledge before signing in.
    NonFipsAddonPack bool
    Allows users in this tenant to use non-FIPS-compliant addon packs when creating cluster profiles. The non_fips_addon_pack only supported in palette vertex environment.
    NonFipsClusterImport bool
    Allows users in this tenant to import clusters, but the imported clusters may not be FIPS-compliant. The non_fips_cluster_import only supported in palette vertex environment.
    NonFipsFeatures bool
    Allows users in this tenant to access non-FIPS-compliant features such as backup, restore, and scans. The non_fips_features only supported in palette vertex environment.
    PauseAgentUpgrades string
    Controls automatic upgrades for Palette components and agents in clusters deployed under a tenant or project. Setting it to lock disables automatic upgrades, while unlock (default) allows automatic upgrades.
    PlatformSettingId string
    The ID of this resource.
    SessionTimeout float64
    Specifies the duration (in minutes) of inactivity before a user is automatically logged out. The default is 240 minutes allowed in Palette
    Timeouts PlatformSettingTimeoutsArgs
    clusterAutoRemediation Boolean
    Enables automatic remediation for unhealthy nodes in Palette-provisioned clusters by replacing them with new nodes. Disabling this feature prevents auto-remediation. Not applicable to EKS, AKS, or TKE clusters.
    context String
    Defines the scope of the platform setting. Valid values are project or tenant. By default, it is set to tenant. If the project context is specified, the project name will sourced from the provider configuration parameter project_name.
    enableAutoRemediation Boolean
    Enables automatic remediation. set only with `project' context
    loginBanner PlatformSettingLoginBanner
    Configure a login banner that users must acknowledge before signing in.
    nonFipsAddonPack Boolean
    Allows users in this tenant to use non-FIPS-compliant addon packs when creating cluster profiles. The non_fips_addon_pack only supported in palette vertex environment.
    nonFipsClusterImport Boolean
    Allows users in this tenant to import clusters, but the imported clusters may not be FIPS-compliant. The non_fips_cluster_import only supported in palette vertex environment.
    nonFipsFeatures Boolean
    Allows users in this tenant to access non-FIPS-compliant features such as backup, restore, and scans. The non_fips_features only supported in palette vertex environment.
    pauseAgentUpgrades String
    Controls automatic upgrades for Palette components and agents in clusters deployed under a tenant or project. Setting it to lock disables automatic upgrades, while unlock (default) allows automatic upgrades.
    platformSettingId String
    The ID of this resource.
    sessionTimeout Double
    Specifies the duration (in minutes) of inactivity before a user is automatically logged out. The default is 240 minutes allowed in Palette
    timeouts PlatformSettingTimeouts
    clusterAutoRemediation boolean
    Enables automatic remediation for unhealthy nodes in Palette-provisioned clusters by replacing them with new nodes. Disabling this feature prevents auto-remediation. Not applicable to EKS, AKS, or TKE clusters.
    context string
    Defines the scope of the platform setting. Valid values are project or tenant. By default, it is set to tenant. If the project context is specified, the project name will sourced from the provider configuration parameter project_name.
    enableAutoRemediation boolean
    Enables automatic remediation. set only with `project' context
    loginBanner PlatformSettingLoginBanner
    Configure a login banner that users must acknowledge before signing in.
    nonFipsAddonPack boolean
    Allows users in this tenant to use non-FIPS-compliant addon packs when creating cluster profiles. The non_fips_addon_pack only supported in palette vertex environment.
    nonFipsClusterImport boolean
    Allows users in this tenant to import clusters, but the imported clusters may not be FIPS-compliant. The non_fips_cluster_import only supported in palette vertex environment.
    nonFipsFeatures boolean
    Allows users in this tenant to access non-FIPS-compliant features such as backup, restore, and scans. The non_fips_features only supported in palette vertex environment.
    pauseAgentUpgrades string
    Controls automatic upgrades for Palette components and agents in clusters deployed under a tenant or project. Setting it to lock disables automatic upgrades, while unlock (default) allows automatic upgrades.
    platformSettingId string
    The ID of this resource.
    sessionTimeout number
    Specifies the duration (in minutes) of inactivity before a user is automatically logged out. The default is 240 minutes allowed in Palette
    timeouts PlatformSettingTimeouts
    cluster_auto_remediation bool
    Enables automatic remediation for unhealthy nodes in Palette-provisioned clusters by replacing them with new nodes. Disabling this feature prevents auto-remediation. Not applicable to EKS, AKS, or TKE clusters.
    context str
    Defines the scope of the platform setting. Valid values are project or tenant. By default, it is set to tenant. If the project context is specified, the project name will sourced from the provider configuration parameter project_name.
    enable_auto_remediation bool
    Enables automatic remediation. set only with `project' context
    login_banner PlatformSettingLoginBannerArgs
    Configure a login banner that users must acknowledge before signing in.
    non_fips_addon_pack bool
    Allows users in this tenant to use non-FIPS-compliant addon packs when creating cluster profiles. The non_fips_addon_pack only supported in palette vertex environment.
    non_fips_cluster_import bool
    Allows users in this tenant to import clusters, but the imported clusters may not be FIPS-compliant. The non_fips_cluster_import only supported in palette vertex environment.
    non_fips_features bool
    Allows users in this tenant to access non-FIPS-compliant features such as backup, restore, and scans. The non_fips_features only supported in palette vertex environment.
    pause_agent_upgrades str
    Controls automatic upgrades for Palette components and agents in clusters deployed under a tenant or project. Setting it to lock disables automatic upgrades, while unlock (default) allows automatic upgrades.
    platform_setting_id str
    The ID of this resource.
    session_timeout float
    Specifies the duration (in minutes) of inactivity before a user is automatically logged out. The default is 240 minutes allowed in Palette
    timeouts PlatformSettingTimeoutsArgs
    clusterAutoRemediation Boolean
    Enables automatic remediation for unhealthy nodes in Palette-provisioned clusters by replacing them with new nodes. Disabling this feature prevents auto-remediation. Not applicable to EKS, AKS, or TKE clusters.
    context String
    Defines the scope of the platform setting. Valid values are project or tenant. By default, it is set to tenant. If the project context is specified, the project name will sourced from the provider configuration parameter project_name.
    enableAutoRemediation Boolean
    Enables automatic remediation. set only with `project' context
    loginBanner Property Map
    Configure a login banner that users must acknowledge before signing in.
    nonFipsAddonPack Boolean
    Allows users in this tenant to use non-FIPS-compliant addon packs when creating cluster profiles. The non_fips_addon_pack only supported in palette vertex environment.
    nonFipsClusterImport Boolean
    Allows users in this tenant to import clusters, but the imported clusters may not be FIPS-compliant. The non_fips_cluster_import only supported in palette vertex environment.
    nonFipsFeatures Boolean
    Allows users in this tenant to access non-FIPS-compliant features such as backup, restore, and scans. The non_fips_features only supported in palette vertex environment.
    pauseAgentUpgrades String
    Controls automatic upgrades for Palette components and agents in clusters deployed under a tenant or project. Setting it to lock disables automatic upgrades, while unlock (default) allows automatic upgrades.
    platformSettingId String
    The ID of this resource.
    sessionTimeout Number
    Specifies the duration (in minutes) of inactivity before a user is automatically logged out. The default is 240 minutes allowed in Palette
    timeouts Property Map

    Supporting Types

    PlatformSettingLoginBanner, PlatformSettingLoginBannerArgs

    Message string
    Specify the message displayed in the login banner.
    Title string
    Specify the title of the login banner.
    Message string
    Specify the message displayed in the login banner.
    Title string
    Specify the title of the login banner.
    message String
    Specify the message displayed in the login banner.
    title String
    Specify the title of the login banner.
    message string
    Specify the message displayed in the login banner.
    title string
    Specify the title of the login banner.
    message str
    Specify the message displayed in the login banner.
    title str
    Specify the title of the login banner.
    message String
    Specify the message displayed in the login banner.
    title String
    Specify the title of the login banner.

    PlatformSettingTimeouts, PlatformSettingTimeoutsArgs

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

    Package Details

    Repository
    spectrocloud spectrocloud/terraform-provider-spectrocloud
    License
    Notes
    This Pulumi package is based on the spectrocloud Terraform Provider.
    spectrocloud logo
    spectrocloud 0.23.5 published on Sunday, Apr 20, 2025 by spectrocloud