1. Packages
  2. Packages
  3. Spectrocloud Provider
  4. API Docs
  5. PlatformSetting
Viewing docs for spectrocloud 0.29.1
published on Friday, May 8, 2026 by spectrocloud
Viewing docs for spectrocloud 0.29.1
published on Friday, May 8, 2026 by spectrocloud

    Resource for managing tenant and project platform settings in Spectro Cloud.

    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("platform_settings", {
        context: "tenant",
        enableAutoRemediation: true,
        sessionTimeout: 230,
        clusterAutoRemediation: false,
        nonFipsAddonPack: true,
        nonFipsFeatures: true,
        nonFipsClusterImport: true,
        pauseAgentUpgrades: "lock",
        loginBanner: {
            title: "test",
            message: "test",
        },
    });
    
    import pulumi
    import pulumi_spectrocloud as spectrocloud
    
    platform_settings = spectrocloud.PlatformSetting("platform_settings",
        context="tenant",
        enable_auto_remediation=True,
        session_timeout=230,
        cluster_auto_remediation=False,
        non_fips_addon_pack=True,
        non_fips_features=True,
        non_fips_cluster_import=True,
        pause_agent_upgrades="lock",
        login_banner={
            "title": "test",
            "message": "test",
        })
    
    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, "platform_settings", &spectrocloud.PlatformSettingArgs{
    			Context:                pulumi.String("tenant"),
    			EnableAutoRemediation:  pulumi.Bool(true),
    			SessionTimeout:         pulumi.Float64(230),
    			ClusterAutoRemediation: pulumi.Bool(false),
    			NonFipsAddonPack:       pulumi.Bool(true),
    			NonFipsFeatures:        pulumi.Bool(true),
    			NonFipsClusterImport:   pulumi.Bool(true),
    			PauseAgentUpgrades:     pulumi.String("lock"),
    			LoginBanner: &spectrocloud.PlatformSettingLoginBannerArgs{
    				Title:   pulumi.String("test"),
    				Message: pulumi.String("test"),
    			},
    		})
    		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("platform_settings", new()
        {
            Context = "tenant",
            EnableAutoRemediation = true,
            SessionTimeout = 230,
            ClusterAutoRemediation = false,
            NonFipsAddonPack = true,
            NonFipsFeatures = true,
            NonFipsClusterImport = true,
            PauseAgentUpgrades = "lock",
            LoginBanner = new Spectrocloud.Inputs.PlatformSettingLoginBannerArgs
            {
                Title = "test",
                Message = "test",
            },
        });
    
    });
    
    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()
                .context("tenant")
                .enableAutoRemediation(true)
                .sessionTimeout(230.0)
                .clusterAutoRemediation(false)
                .nonFipsAddonPack(true)
                .nonFipsFeatures(true)
                .nonFipsClusterImport(true)
                .pauseAgentUpgrades("lock")
                .loginBanner(PlatformSettingLoginBannerArgs.builder()
                    .title("test")
                    .message("test")
                    .build())
                .build());
    
        }
    }
    
    resources:
      platformSettings:
        type: spectrocloud:PlatformSetting
        name: platform_settings
        properties:
          context: tenant
          enableAutoRemediation: true
          sessionTimeout: 230
          clusterAutoRemediation: false
          nonFipsAddonPack: true
          nonFipsFeatures: true
          nonFipsClusterImport: true
          pauseAgentUpgrades: lock
          loginBanner:
            title: test
            message: test
    
    Example coming soon!
    

    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,
                        automatic_cluster_role_binding: Optional[bool] = 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.
    
    
    resource "spectrocloud_platformsetting" "name" {
        # resource properties
    }

    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()
    {
        AutomaticClusterRoleBinding = false,
        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{
    	AutomaticClusterRoleBinding: pulumi.Bool(false),
    	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"),
    	},
    })
    
    resource "spectrocloud_platformsetting" "platformSettingResource" {
      automatic_cluster_role_binding = false
      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"
      }
    }
    
    var platformSettingResource = new PlatformSetting("platformSettingResource", PlatformSettingArgs.builder()
        .automaticClusterRoleBinding(false)
        .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.0)
        .timeouts(PlatformSettingTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .update("string")
            .build())
        .build());
    
    platform_setting_resource = spectrocloud.PlatformSetting("platformSettingResource",
        automatic_cluster_role_binding=False,
        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=float(0),
        timeouts={
            "create": "string",
            "delete": "string",
            "update": "string",
        })
    
    const platformSettingResource = new spectrocloud.PlatformSetting("platformSettingResource", {
        automaticClusterRoleBinding: false,
        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:
        automaticClusterRoleBinding: false
        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:

    AutomaticClusterRoleBinding bool
    Enables automatic cluster role binding for clusters deployed under a tenant or project. Setting it to false disables automatic cluster role binding.
    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. Allowed only for project context.
    LoginBanner PlatformSettingLoginBanner
    Configure a login banner that users must acknowledge before signing in. Allowed only for tenant context
    NonFipsAddonPack bool
    Allows users in this tenant to use non-FIPS-compliant addon packs when creating cluster profiles. The non_fips_addon_pack setting is supported only in Palette Vertex environments. Allowed only for tenant context.
    NonFipsClusterImport bool
    Allows users in this tenant to import clusters that may not be FIPS-compliant. The non_fips_cluster_import setting is supported only in Palette Vertex environments. Allowed only for tenant context.
    NonFipsFeatures bool
    Allows users in this tenant to access non-FIPS-compliant features such as backup, restore, and scans. The non_fips_features setting is supported only in Palette Vertex environments. Allowed only for tenant context.
    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 in Palette. Allowed only for tenant context.
    Timeouts PlatformSettingTimeouts
    AutomaticClusterRoleBinding bool
    Enables automatic cluster role binding for clusters deployed under a tenant or project. Setting it to false disables automatic cluster role binding.
    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. Allowed only for project context.
    LoginBanner PlatformSettingLoginBannerArgs
    Configure a login banner that users must acknowledge before signing in. Allowed only for tenant context
    NonFipsAddonPack bool
    Allows users in this tenant to use non-FIPS-compliant addon packs when creating cluster profiles. The non_fips_addon_pack setting is supported only in Palette Vertex environments. Allowed only for tenant context.
    NonFipsClusterImport bool
    Allows users in this tenant to import clusters that may not be FIPS-compliant. The non_fips_cluster_import setting is supported only in Palette Vertex environments. Allowed only for tenant context.
    NonFipsFeatures bool
    Allows users in this tenant to access non-FIPS-compliant features such as backup, restore, and scans. The non_fips_features setting is supported only in Palette Vertex environments. Allowed only for tenant context.
    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 in Palette. Allowed only for tenant context.
    Timeouts PlatformSettingTimeoutsArgs
    automatic_cluster_role_binding bool
    Enables automatic cluster role binding for clusters deployed under a tenant or project. Setting it to false disables automatic cluster role binding.
    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 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.
    enable_auto_remediation bool
    Enables automatic remediation. Allowed only for project context.
    login_banner object
    Configure a login banner that users must acknowledge before signing in. Allowed only for tenant context
    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 setting is supported only in Palette Vertex environments. Allowed only for tenant context.
    non_fips_cluster_import bool
    Allows users in this tenant to import clusters that may not be FIPS-compliant. The non_fips_cluster_import setting is supported only in Palette Vertex environments. Allowed only for tenant context.
    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 setting is supported only in Palette Vertex environments. Allowed only for tenant context.
    pause_agent_upgrades 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.
    platform_setting_id string
    The ID of this resource.
    session_timeout number
    Specifies the duration in minutes of inactivity before a user is automatically logged out. The default is 240 minutes in Palette. Allowed only for tenant context.
    timeouts object
    automaticClusterRoleBinding Boolean
    Enables automatic cluster role binding for clusters deployed under a tenant or project. Setting it to false disables automatic cluster role binding.
    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. Allowed only for project context.
    loginBanner PlatformSettingLoginBanner
    Configure a login banner that users must acknowledge before signing in. Allowed only for tenant context
    nonFipsAddonPack Boolean
    Allows users in this tenant to use non-FIPS-compliant addon packs when creating cluster profiles. The non_fips_addon_pack setting is supported only in Palette Vertex environments. Allowed only for tenant context.
    nonFipsClusterImport Boolean
    Allows users in this tenant to import clusters that may not be FIPS-compliant. The non_fips_cluster_import setting is supported only in Palette Vertex environments. Allowed only for tenant context.
    nonFipsFeatures Boolean
    Allows users in this tenant to access non-FIPS-compliant features such as backup, restore, and scans. The non_fips_features setting is supported only in Palette Vertex environments. Allowed only for tenant context.
    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 in Palette. Allowed only for tenant context.
    timeouts PlatformSettingTimeouts
    automaticClusterRoleBinding boolean
    Enables automatic cluster role binding for clusters deployed under a tenant or project. Setting it to false disables automatic cluster role binding.
    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. Allowed only for project context.
    loginBanner PlatformSettingLoginBanner
    Configure a login banner that users must acknowledge before signing in. Allowed only for tenant context
    nonFipsAddonPack boolean
    Allows users in this tenant to use non-FIPS-compliant addon packs when creating cluster profiles. The non_fips_addon_pack setting is supported only in Palette Vertex environments. Allowed only for tenant context.
    nonFipsClusterImport boolean
    Allows users in this tenant to import clusters that may not be FIPS-compliant. The non_fips_cluster_import setting is supported only in Palette Vertex environments. Allowed only for tenant context.
    nonFipsFeatures boolean
    Allows users in this tenant to access non-FIPS-compliant features such as backup, restore, and scans. The non_fips_features setting is supported only in Palette Vertex environments. Allowed only for tenant context.
    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 in Palette. Allowed only for tenant context.
    timeouts PlatformSettingTimeouts
    automatic_cluster_role_binding bool
    Enables automatic cluster role binding for clusters deployed under a tenant or project. Setting it to false disables automatic cluster role binding.
    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. Allowed only for project context.
    login_banner PlatformSettingLoginBannerArgs
    Configure a login banner that users must acknowledge before signing in. Allowed only for tenant context
    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 setting is supported only in Palette Vertex environments. Allowed only for tenant context.
    non_fips_cluster_import bool
    Allows users in this tenant to import clusters that may not be FIPS-compliant. The non_fips_cluster_import setting is supported only in Palette Vertex environments. Allowed only for tenant context.
    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 setting is supported only in Palette Vertex environments. Allowed only for tenant context.
    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 in Palette. Allowed only for tenant context.
    timeouts PlatformSettingTimeoutsArgs
    automaticClusterRoleBinding Boolean
    Enables automatic cluster role binding for clusters deployed under a tenant or project. Setting it to false disables automatic cluster role binding.
    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. Allowed only for project context.
    loginBanner Property Map
    Configure a login banner that users must acknowledge before signing in. Allowed only for tenant context
    nonFipsAddonPack Boolean
    Allows users in this tenant to use non-FIPS-compliant addon packs when creating cluster profiles. The non_fips_addon_pack setting is supported only in Palette Vertex environments. Allowed only for tenant context.
    nonFipsClusterImport Boolean
    Allows users in this tenant to import clusters that may not be FIPS-compliant. The non_fips_cluster_import setting is supported only in Palette Vertex environments. Allowed only for tenant context.
    nonFipsFeatures Boolean
    Allows users in this tenant to access non-FIPS-compliant features such as backup, restore, and scans. The non_fips_features setting is supported only in Palette Vertex environments. Allowed only for tenant context.
    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 in Palette. Allowed only for tenant context.
    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 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,
            automatic_cluster_role_binding: Optional[bool] = 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}
    import {
      to = spectrocloud_platformsetting.example
      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:
    AutomaticClusterRoleBinding bool
    Enables automatic cluster role binding for clusters deployed under a tenant or project. Setting it to false disables automatic cluster role binding.
    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. Allowed only for project context.
    LoginBanner PlatformSettingLoginBanner
    Configure a login banner that users must acknowledge before signing in. Allowed only for tenant context
    NonFipsAddonPack bool
    Allows users in this tenant to use non-FIPS-compliant addon packs when creating cluster profiles. The non_fips_addon_pack setting is supported only in Palette Vertex environments. Allowed only for tenant context.
    NonFipsClusterImport bool
    Allows users in this tenant to import clusters that may not be FIPS-compliant. The non_fips_cluster_import setting is supported only in Palette Vertex environments. Allowed only for tenant context.
    NonFipsFeatures bool
    Allows users in this tenant to access non-FIPS-compliant features such as backup, restore, and scans. The non_fips_features setting is supported only in Palette Vertex environments. Allowed only for tenant context.
    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 in Palette. Allowed only for tenant context.
    Timeouts PlatformSettingTimeouts
    AutomaticClusterRoleBinding bool
    Enables automatic cluster role binding for clusters deployed under a tenant or project. Setting it to false disables automatic cluster role binding.
    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. Allowed only for project context.
    LoginBanner PlatformSettingLoginBannerArgs
    Configure a login banner that users must acknowledge before signing in. Allowed only for tenant context
    NonFipsAddonPack bool
    Allows users in this tenant to use non-FIPS-compliant addon packs when creating cluster profiles. The non_fips_addon_pack setting is supported only in Palette Vertex environments. Allowed only for tenant context.
    NonFipsClusterImport bool
    Allows users in this tenant to import clusters that may not be FIPS-compliant. The non_fips_cluster_import setting is supported only in Palette Vertex environments. Allowed only for tenant context.
    NonFipsFeatures bool
    Allows users in this tenant to access non-FIPS-compliant features such as backup, restore, and scans. The non_fips_features setting is supported only in Palette Vertex environments. Allowed only for tenant context.
    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 in Palette. Allowed only for tenant context.
    Timeouts PlatformSettingTimeoutsArgs
    automatic_cluster_role_binding bool
    Enables automatic cluster role binding for clusters deployed under a tenant or project. Setting it to false disables automatic cluster role binding.
    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 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.
    enable_auto_remediation bool
    Enables automatic remediation. Allowed only for project context.
    login_banner object
    Configure a login banner that users must acknowledge before signing in. Allowed only for tenant context
    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 setting is supported only in Palette Vertex environments. Allowed only for tenant context.
    non_fips_cluster_import bool
    Allows users in this tenant to import clusters that may not be FIPS-compliant. The non_fips_cluster_import setting is supported only in Palette Vertex environments. Allowed only for tenant context.
    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 setting is supported only in Palette Vertex environments. Allowed only for tenant context.
    pause_agent_upgrades 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.
    platform_setting_id string
    The ID of this resource.
    session_timeout number
    Specifies the duration in minutes of inactivity before a user is automatically logged out. The default is 240 minutes in Palette. Allowed only for tenant context.
    timeouts object
    automaticClusterRoleBinding Boolean
    Enables automatic cluster role binding for clusters deployed under a tenant or project. Setting it to false disables automatic cluster role binding.
    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. Allowed only for project context.
    loginBanner PlatformSettingLoginBanner
    Configure a login banner that users must acknowledge before signing in. Allowed only for tenant context
    nonFipsAddonPack Boolean
    Allows users in this tenant to use non-FIPS-compliant addon packs when creating cluster profiles. The non_fips_addon_pack setting is supported only in Palette Vertex environments. Allowed only for tenant context.
    nonFipsClusterImport Boolean
    Allows users in this tenant to import clusters that may not be FIPS-compliant. The non_fips_cluster_import setting is supported only in Palette Vertex environments. Allowed only for tenant context.
    nonFipsFeatures Boolean
    Allows users in this tenant to access non-FIPS-compliant features such as backup, restore, and scans. The non_fips_features setting is supported only in Palette Vertex environments. Allowed only for tenant context.
    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 in Palette. Allowed only for tenant context.
    timeouts PlatformSettingTimeouts
    automaticClusterRoleBinding boolean
    Enables automatic cluster role binding for clusters deployed under a tenant or project. Setting it to false disables automatic cluster role binding.
    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. Allowed only for project context.
    loginBanner PlatformSettingLoginBanner
    Configure a login banner that users must acknowledge before signing in. Allowed only for tenant context
    nonFipsAddonPack boolean
    Allows users in this tenant to use non-FIPS-compliant addon packs when creating cluster profiles. The non_fips_addon_pack setting is supported only in Palette Vertex environments. Allowed only for tenant context.
    nonFipsClusterImport boolean
    Allows users in this tenant to import clusters that may not be FIPS-compliant. The non_fips_cluster_import setting is supported only in Palette Vertex environments. Allowed only for tenant context.
    nonFipsFeatures boolean
    Allows users in this tenant to access non-FIPS-compliant features such as backup, restore, and scans. The non_fips_features setting is supported only in Palette Vertex environments. Allowed only for tenant context.
    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 in Palette. Allowed only for tenant context.
    timeouts PlatformSettingTimeouts
    automatic_cluster_role_binding bool
    Enables automatic cluster role binding for clusters deployed under a tenant or project. Setting it to false disables automatic cluster role binding.
    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. Allowed only for project context.
    login_banner PlatformSettingLoginBannerArgs
    Configure a login banner that users must acknowledge before signing in. Allowed only for tenant context
    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 setting is supported only in Palette Vertex environments. Allowed only for tenant context.
    non_fips_cluster_import bool
    Allows users in this tenant to import clusters that may not be FIPS-compliant. The non_fips_cluster_import setting is supported only in Palette Vertex environments. Allowed only for tenant context.
    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 setting is supported only in Palette Vertex environments. Allowed only for tenant context.
    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 in Palette. Allowed only for tenant context.
    timeouts PlatformSettingTimeoutsArgs
    automaticClusterRoleBinding Boolean
    Enables automatic cluster role binding for clusters deployed under a tenant or project. Setting it to false disables automatic cluster role binding.
    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. Allowed only for project context.
    loginBanner Property Map
    Configure a login banner that users must acknowledge before signing in. Allowed only for tenant context
    nonFipsAddonPack Boolean
    Allows users in this tenant to use non-FIPS-compliant addon packs when creating cluster profiles. The non_fips_addon_pack setting is supported only in Palette Vertex environments. Allowed only for tenant context.
    nonFipsClusterImport Boolean
    Allows users in this tenant to import clusters that may not be FIPS-compliant. The non_fips_cluster_import setting is supported only in Palette Vertex environments. Allowed only for tenant context.
    nonFipsFeatures Boolean
    Allows users in this tenant to access non-FIPS-compliant features such as backup, restore, and scans. The non_fips_features setting is supported only in Palette Vertex environments. Allowed only for tenant context.
    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 in Palette. Allowed only for tenant context.
    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 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 string
    delete string
    update string
    create str
    delete str
    update str
    create String
    delete String
    update String

    Import

    Using pulumi import, import the platform setting using the tenant_uid/project_uid or tenant_name/project_name colon separated with context. For example:

    console

    $ pulumi import spectrocloud:index/platformSetting:PlatformSetting example <tenant_uid>/<project_uid>:<project>/<tenant>
    
    $ pulumi import spectrocloud:index/platformSetting:PlatformSetting example <tenant_name>/<project_name>:<project>/<tenant>
    

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

    Package Details

    Repository
    spectrocloud spectrocloud/terraform-provider-spectrocloud
    License
    Notes
    This Pulumi package is based on the spectrocloud Terraform Provider.
    Viewing docs for spectrocloud 0.29.1
    published on Friday, May 8, 2026 by spectrocloud
      Try Pulumi Cloud free. Your team will thank you.