spectrocloud.PlatformSetting
Explore with Pulumi AI
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:
- Cluster
Auto boolRemediation - 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
, orTKE
clusters. - Context string
- Defines the scope of the platform setting. Valid values are
project
ortenant
. By default, it is set totenant
. If theproject
context is specified, the project name will sourced from the provider configuration parameterproject_name
. - Enable
Auto boolRemediation - Enables automatic remediation. set only with `project' context
- Platform
Setting Login Banner - Configure a login banner that users must acknowledge before signing in.
- Non
Fips boolAddon Pack - 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 boolCluster Import - 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 boolFeatures - 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 stringUpgrades - Controls automatic upgrades for Palette components and agents in clusters deployed under a tenant or project. Setting it to
lock
disables automatic upgrades, whileunlock
(default) allows automatic upgrades. - Platform
Setting stringId - The ID of this resource.
- Session
Timeout double - Specifies the duration (in minutes) of inactivity before a user is automatically logged out. The default is 240 minutes allowed in Palette
- Timeouts
Platform
Setting Timeouts
- Cluster
Auto boolRemediation - 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
, orTKE
clusters. - Context string
- Defines the scope of the platform setting. Valid values are
project
ortenant
. By default, it is set totenant
. If theproject
context is specified, the project name will sourced from the provider configuration parameterproject_name
. - Enable
Auto boolRemediation - Enables automatic remediation. set only with `project' context
- Platform
Setting Login Banner Args - Configure a login banner that users must acknowledge before signing in.
- Non
Fips boolAddon Pack - 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 boolCluster Import - 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 boolFeatures - 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 stringUpgrades - Controls automatic upgrades for Palette components and agents in clusters deployed under a tenant or project. Setting it to
lock
disables automatic upgrades, whileunlock
(default) allows automatic upgrades. - Platform
Setting stringId - The ID of this resource.
- Session
Timeout float64 - Specifies the duration (in minutes) of inactivity before a user is automatically logged out. The default is 240 minutes allowed in Palette
- Timeouts
Platform
Setting Timeouts Args
- cluster
Auto BooleanRemediation - 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
, orTKE
clusters. - context String
- Defines the scope of the platform setting. Valid values are
project
ortenant
. By default, it is set totenant
. If theproject
context is specified, the project name will sourced from the provider configuration parameterproject_name
. - enable
Auto BooleanRemediation - Enables automatic remediation. set only with `project' context
- Platform
Setting Login Banner - Configure a login banner that users must acknowledge before signing in.
- non
Fips BooleanAddon Pack - 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 BooleanCluster Import - 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 BooleanFeatures - 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 StringUpgrades - Controls automatic upgrades for Palette components and agents in clusters deployed under a tenant or project. Setting it to
lock
disables automatic upgrades, whileunlock
(default) allows automatic upgrades. - platform
Setting StringId - The ID of this resource.
- session
Timeout Double - Specifies the duration (in minutes) of inactivity before a user is automatically logged out. The default is 240 minutes allowed in Palette
- timeouts
Platform
Setting Timeouts
- cluster
Auto booleanRemediation - 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
, orTKE
clusters. - context string
- Defines the scope of the platform setting. Valid values are
project
ortenant
. By default, it is set totenant
. If theproject
context is specified, the project name will sourced from the provider configuration parameterproject_name
. - enable
Auto booleanRemediation - Enables automatic remediation. set only with `project' context
- Platform
Setting Login Banner - Configure a login banner that users must acknowledge before signing in.
- non
Fips booleanAddon Pack - 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 booleanCluster Import - 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 booleanFeatures - 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 stringUpgrades - Controls automatic upgrades for Palette components and agents in clusters deployed under a tenant or project. Setting it to
lock
disables automatic upgrades, whileunlock
(default) allows automatic upgrades. - platform
Setting stringId - 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 allowed in Palette
- timeouts
Platform
Setting Timeouts
- cluster_
auto_ boolremediation - 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
, orTKE
clusters. - context str
- Defines the scope of the platform setting. Valid values are
project
ortenant
. By default, it is set totenant
. If theproject
context is specified, the project name will sourced from the provider configuration parameterproject_name
. - enable_
auto_ boolremediation - Enables automatic remediation. set only with `project' context
- Platform
Setting Login Banner Args - Configure a login banner that users must acknowledge before signing in.
- non_
fips_ booladdon_ pack - 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_ boolcluster_ import - 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_ boolfeatures - 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_ strupgrades - Controls automatic upgrades for Palette components and agents in clusters deployed under a tenant or project. Setting it to
lock
disables automatic upgrades, whileunlock
(default) allows automatic upgrades. - platform_
setting_ strid - 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
Platform
Setting Timeouts Args
- cluster
Auto BooleanRemediation - 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
, orTKE
clusters. - context String
- Defines the scope of the platform setting. Valid values are
project
ortenant
. By default, it is set totenant
. If theproject
context is specified, the project name will sourced from the provider configuration parameterproject_name
. - enable
Auto BooleanRemediation - Enables automatic remediation. set only with `project' context
- Property Map
- Configure a login banner that users must acknowledge before signing in.
- non
Fips BooleanAddon Pack - 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 BooleanCluster Import - 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 BooleanFeatures - 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 StringUpgrades - Controls automatic upgrades for Palette components and agents in clusters deployed under a tenant or project. Setting it to
lock
disables automatic upgrades, whileunlock
(default) allows automatic upgrades. - platform
Setting StringId - 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 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.
- Cluster
Auto boolRemediation - 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
, orTKE
clusters. - Context string
- Defines the scope of the platform setting. Valid values are
project
ortenant
. By default, it is set totenant
. If theproject
context is specified, the project name will sourced from the provider configuration parameterproject_name
. - Enable
Auto boolRemediation - Enables automatic remediation. set only with `project' context
- Platform
Setting Login Banner - Configure a login banner that users must acknowledge before signing in.
- Non
Fips boolAddon Pack - 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 boolCluster Import - 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 boolFeatures - 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 stringUpgrades - Controls automatic upgrades for Palette components and agents in clusters deployed under a tenant or project. Setting it to
lock
disables automatic upgrades, whileunlock
(default) allows automatic upgrades. - Platform
Setting stringId - The ID of this resource.
- Session
Timeout double - Specifies the duration (in minutes) of inactivity before a user is automatically logged out. The default is 240 minutes allowed in Palette
- Timeouts
Platform
Setting Timeouts
- Cluster
Auto boolRemediation - 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
, orTKE
clusters. - Context string
- Defines the scope of the platform setting. Valid values are
project
ortenant
. By default, it is set totenant
. If theproject
context is specified, the project name will sourced from the provider configuration parameterproject_name
. - Enable
Auto boolRemediation - Enables automatic remediation. set only with `project' context
- Platform
Setting Login Banner Args - Configure a login banner that users must acknowledge before signing in.
- Non
Fips boolAddon Pack - 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 boolCluster Import - 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 boolFeatures - 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 stringUpgrades - Controls automatic upgrades for Palette components and agents in clusters deployed under a tenant or project. Setting it to
lock
disables automatic upgrades, whileunlock
(default) allows automatic upgrades. - Platform
Setting stringId - The ID of this resource.
- Session
Timeout float64 - Specifies the duration (in minutes) of inactivity before a user is automatically logged out. The default is 240 minutes allowed in Palette
- Timeouts
Platform
Setting Timeouts Args
- cluster
Auto BooleanRemediation - 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
, orTKE
clusters. - context String
- Defines the scope of the platform setting. Valid values are
project
ortenant
. By default, it is set totenant
. If theproject
context is specified, the project name will sourced from the provider configuration parameterproject_name
. - enable
Auto BooleanRemediation - Enables automatic remediation. set only with `project' context
- Platform
Setting Login Banner - Configure a login banner that users must acknowledge before signing in.
- non
Fips BooleanAddon Pack - 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 BooleanCluster Import - 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 BooleanFeatures - 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 StringUpgrades - Controls automatic upgrades for Palette components and agents in clusters deployed under a tenant or project. Setting it to
lock
disables automatic upgrades, whileunlock
(default) allows automatic upgrades. - platform
Setting StringId - The ID of this resource.
- session
Timeout Double - Specifies the duration (in minutes) of inactivity before a user is automatically logged out. The default is 240 minutes allowed in Palette
- timeouts
Platform
Setting Timeouts
- cluster
Auto booleanRemediation - 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
, orTKE
clusters. - context string
- Defines the scope of the platform setting. Valid values are
project
ortenant
. By default, it is set totenant
. If theproject
context is specified, the project name will sourced from the provider configuration parameterproject_name
. - enable
Auto booleanRemediation - Enables automatic remediation. set only with `project' context
- Platform
Setting Login Banner - Configure a login banner that users must acknowledge before signing in.
- non
Fips booleanAddon Pack - 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 booleanCluster Import - 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 booleanFeatures - 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 stringUpgrades - Controls automatic upgrades for Palette components and agents in clusters deployed under a tenant or project. Setting it to
lock
disables automatic upgrades, whileunlock
(default) allows automatic upgrades. - platform
Setting stringId - 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 allowed in Palette
- timeouts
Platform
Setting Timeouts
- cluster_
auto_ boolremediation - 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
, orTKE
clusters. - context str
- Defines the scope of the platform setting. Valid values are
project
ortenant
. By default, it is set totenant
. If theproject
context is specified, the project name will sourced from the provider configuration parameterproject_name
. - enable_
auto_ boolremediation - Enables automatic remediation. set only with `project' context
- Platform
Setting Login Banner Args - Configure a login banner that users must acknowledge before signing in.
- non_
fips_ booladdon_ pack - 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_ boolcluster_ import - 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_ boolfeatures - 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_ strupgrades - Controls automatic upgrades for Palette components and agents in clusters deployed under a tenant or project. Setting it to
lock
disables automatic upgrades, whileunlock
(default) allows automatic upgrades. - platform_
setting_ strid - 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
Platform
Setting Timeouts Args
- cluster
Auto BooleanRemediation - 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
, orTKE
clusters. - context String
- Defines the scope of the platform setting. Valid values are
project
ortenant
. By default, it is set totenant
. If theproject
context is specified, the project name will sourced from the provider configuration parameterproject_name
. - enable
Auto BooleanRemediation - Enables automatic remediation. set only with `project' context
- Property Map
- Configure a login banner that users must acknowledge before signing in.
- non
Fips BooleanAddon Pack - 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 BooleanCluster Import - 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 BooleanFeatures - 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 StringUpgrades - Controls automatic upgrades for Palette components and agents in clusters deployed under a tenant or project. Setting it to
lock
disables automatic upgrades, whileunlock
(default) allows automatic upgrades. - platform
Setting StringId - 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 allowed in Palette
- timeouts Property Map
Supporting Types
PlatformSettingLoginBanner, PlatformSettingLoginBannerArgs
PlatformSettingTimeouts, PlatformSettingTimeoutsArgs
Package Details
- Repository
- spectrocloud spectrocloud/terraform-provider-spectrocloud
- License
- Notes
- This Pulumi package is based on the
spectrocloud
Terraform Provider.