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

spectrocloud.ClusterProfile

Explore with Pulumi AI

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

    Import

    You can also use the Terraform CLI and the pulumi import, command to import the cluster using by referencing the resource id. For example:

    $ pulumi import spectrocloud:index/clusterProfile:ClusterProfile example example_id:project
    

    Refer to the Import section to learn more.

    Create ClusterProfile Resource

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

    Constructor syntax

    new ClusterProfile(name: string, args?: ClusterProfileArgs, opts?: CustomResourceOptions);
    @overload
    def ClusterProfile(resource_name: str,
                       args: Optional[ClusterProfileArgs] = None,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def ClusterProfile(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       cloud: Optional[str] = None,
                       cluster_profile_id: Optional[str] = None,
                       context: Optional[str] = None,
                       description: Optional[str] = None,
                       name: Optional[str] = None,
                       packs: Optional[Sequence[ClusterProfilePackArgs]] = None,
                       profile_variables: Optional[ClusterProfileProfileVariablesArgs] = None,
                       tags: Optional[Sequence[str]] = None,
                       timeouts: Optional[ClusterProfileTimeoutsArgs] = None,
                       type: Optional[str] = None,
                       version: Optional[str] = None)
    func NewClusterProfile(ctx *Context, name string, args *ClusterProfileArgs, opts ...ResourceOption) (*ClusterProfile, error)
    public ClusterProfile(string name, ClusterProfileArgs? args = null, CustomResourceOptions? opts = null)
    public ClusterProfile(String name, ClusterProfileArgs args)
    public ClusterProfile(String name, ClusterProfileArgs args, CustomResourceOptions options)
    
    type: spectrocloud:ClusterProfile
    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 ClusterProfileArgs
    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 ClusterProfileArgs
    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 ClusterProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ClusterProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ClusterProfileArgs
    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 clusterProfileResource = new Spectrocloud.ClusterProfile("clusterProfileResource", new()
    {
        Cloud = "string",
        ClusterProfileId = "string",
        Context = "string",
        Description = "string",
        Name = "string",
        Packs = new[]
        {
            new Spectrocloud.Inputs.ClusterProfilePackArgs
            {
                Name = "string",
                Manifests = new[]
                {
                    new Spectrocloud.Inputs.ClusterProfilePackManifestArgs
                    {
                        Content = "string",
                        Name = "string",
                        Uid = "string",
                    },
                },
                RegistryUid = "string",
                Tag = "string",
                Type = "string",
                Uid = "string",
                Values = "string",
            },
        },
        ProfileVariables = new Spectrocloud.Inputs.ClusterProfileProfileVariablesArgs
        {
            Variables = new[]
            {
                new Spectrocloud.Inputs.ClusterProfileProfileVariablesVariableArgs
                {
                    DisplayName = "string",
                    Name = "string",
                    DefaultValue = "string",
                    Description = "string",
                    Format = "string",
                    Hidden = false,
                    Immutable = false,
                    IsSensitive = false,
                    Regex = "string",
                    Required = false,
                },
            },
        },
        Tags = new[]
        {
            "string",
        },
        Timeouts = new Spectrocloud.Inputs.ClusterProfileTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Update = "string",
        },
        Type = "string",
        Version = "string",
    });
    
    example, err := spectrocloud.NewClusterProfile(ctx, "clusterProfileResource", &spectrocloud.ClusterProfileArgs{
    	Cloud:            pulumi.String("string"),
    	ClusterProfileId: pulumi.String("string"),
    	Context:          pulumi.String("string"),
    	Description:      pulumi.String("string"),
    	Name:             pulumi.String("string"),
    	Packs: spectrocloud.ClusterProfilePackArray{
    		&spectrocloud.ClusterProfilePackArgs{
    			Name: pulumi.String("string"),
    			Manifests: spectrocloud.ClusterProfilePackManifestArray{
    				&spectrocloud.ClusterProfilePackManifestArgs{
    					Content: pulumi.String("string"),
    					Name:    pulumi.String("string"),
    					Uid:     pulumi.String("string"),
    				},
    			},
    			RegistryUid: pulumi.String("string"),
    			Tag:         pulumi.String("string"),
    			Type:        pulumi.String("string"),
    			Uid:         pulumi.String("string"),
    			Values:      pulumi.String("string"),
    		},
    	},
    	ProfileVariables: &spectrocloud.ClusterProfileProfileVariablesArgs{
    		Variables: spectrocloud.ClusterProfileProfileVariablesVariableArray{
    			&spectrocloud.ClusterProfileProfileVariablesVariableArgs{
    				DisplayName:  pulumi.String("string"),
    				Name:         pulumi.String("string"),
    				DefaultValue: pulumi.String("string"),
    				Description:  pulumi.String("string"),
    				Format:       pulumi.String("string"),
    				Hidden:       pulumi.Bool(false),
    				Immutable:    pulumi.Bool(false),
    				IsSensitive:  pulumi.Bool(false),
    				Regex:        pulumi.String("string"),
    				Required:     pulumi.Bool(false),
    			},
    		},
    	},
    	Tags: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Timeouts: &spectrocloud.ClusterProfileTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    	Type:    pulumi.String("string"),
    	Version: pulumi.String("string"),
    })
    
    var clusterProfileResource = new ClusterProfile("clusterProfileResource", ClusterProfileArgs.builder()
        .cloud("string")
        .clusterProfileId("string")
        .context("string")
        .description("string")
        .name("string")
        .packs(ClusterProfilePackArgs.builder()
            .name("string")
            .manifests(ClusterProfilePackManifestArgs.builder()
                .content("string")
                .name("string")
                .uid("string")
                .build())
            .registryUid("string")
            .tag("string")
            .type("string")
            .uid("string")
            .values("string")
            .build())
        .profileVariables(ClusterProfileProfileVariablesArgs.builder()
            .variables(ClusterProfileProfileVariablesVariableArgs.builder()
                .displayName("string")
                .name("string")
                .defaultValue("string")
                .description("string")
                .format("string")
                .hidden(false)
                .immutable(false)
                .isSensitive(false)
                .regex("string")
                .required(false)
                .build())
            .build())
        .tags("string")
        .timeouts(ClusterProfileTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .update("string")
            .build())
        .type("string")
        .version("string")
        .build());
    
    cluster_profile_resource = spectrocloud.ClusterProfile("clusterProfileResource",
        cloud="string",
        cluster_profile_id="string",
        context="string",
        description="string",
        name="string",
        packs=[{
            "name": "string",
            "manifests": [{
                "content": "string",
                "name": "string",
                "uid": "string",
            }],
            "registry_uid": "string",
            "tag": "string",
            "type": "string",
            "uid": "string",
            "values": "string",
        }],
        profile_variables={
            "variables": [{
                "display_name": "string",
                "name": "string",
                "default_value": "string",
                "description": "string",
                "format": "string",
                "hidden": False,
                "immutable": False,
                "is_sensitive": False,
                "regex": "string",
                "required": False,
            }],
        },
        tags=["string"],
        timeouts={
            "create": "string",
            "delete": "string",
            "update": "string",
        },
        type="string",
        version="string")
    
    const clusterProfileResource = new spectrocloud.ClusterProfile("clusterProfileResource", {
        cloud: "string",
        clusterProfileId: "string",
        context: "string",
        description: "string",
        name: "string",
        packs: [{
            name: "string",
            manifests: [{
                content: "string",
                name: "string",
                uid: "string",
            }],
            registryUid: "string",
            tag: "string",
            type: "string",
            uid: "string",
            values: "string",
        }],
        profileVariables: {
            variables: [{
                displayName: "string",
                name: "string",
                defaultValue: "string",
                description: "string",
                format: "string",
                hidden: false,
                immutable: false,
                isSensitive: false,
                regex: "string",
                required: false,
            }],
        },
        tags: ["string"],
        timeouts: {
            create: "string",
            "delete": "string",
            update: "string",
        },
        type: "string",
        version: "string",
    });
    
    type: spectrocloud:ClusterProfile
    properties:
        cloud: string
        clusterProfileId: string
        context: string
        description: string
        name: string
        packs:
            - manifests:
                - content: string
                  name: string
                  uid: string
              name: string
              registryUid: string
              tag: string
              type: string
              uid: string
              values: string
        profileVariables:
            variables:
                - defaultValue: string
                  description: string
                  displayName: string
                  format: string
                  hidden: false
                  immutable: false
                  isSensitive: false
                  name: string
                  regex: string
                  required: false
        tags:
            - string
        timeouts:
            create: string
            delete: string
            update: string
        type: string
        version: string
    

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

    Cloud string
    Specify the infrastructure provider the cluster profile is for. Only Palette supported infrastructure providers can be used. The supported cloud types are - all, aws, azure, gcp, vsphere, openstack, maas, virtual, baremetal, eks, aks, edge-native, generic, and gke or any custom cloud provider registered in Palette, e.g., nutanix.If the value is set to all, then the type must be set to add-on. Otherwise, the cluster profile may be incompatible with other providers. Default value is all.
    ClusterProfileId string
    The ID of this resource.
    Context string
    The context of the cluster profile. Allowed values are project or tenant. Default value is project. If the project context is specified, the project name will sourced from the provider configuration parameter project_name.
    Description string
    Name string
    Packs List<ClusterProfilePack>
    For packs of type spectro, helm, and manifest, at least one pack must be specified.
    ProfileVariables ClusterProfileProfileVariables
    List of variables for the cluster profile.
    Tags List<string>
    A list of tags to be applied to the cluster. Tags must be in the form of key:value.
    Timeouts ClusterProfileTimeouts
    Type string
    Specify the cluster profile type to use. Allowed values are cluster, infra, add-on, and system. These values map to the following User Interface (UI) labels. Use the value ' cluster ' for a Full cluster profile.For an Infrastructure cluster profile, use the value infra; for an Add-on cluster profile, use the value add-on.System cluster profiles can be specified using the value system. To learn more about cluster profiles, refer to the Cluster Profile documentation. Default value is add-on.
    Version string
    Version of the cluster profile. Defaults to '1.0.0'.
    Cloud string
    Specify the infrastructure provider the cluster profile is for. Only Palette supported infrastructure providers can be used. The supported cloud types are - all, aws, azure, gcp, vsphere, openstack, maas, virtual, baremetal, eks, aks, edge-native, generic, and gke or any custom cloud provider registered in Palette, e.g., nutanix.If the value is set to all, then the type must be set to add-on. Otherwise, the cluster profile may be incompatible with other providers. Default value is all.
    ClusterProfileId string
    The ID of this resource.
    Context string
    The context of the cluster profile. Allowed values are project or tenant. Default value is project. If the project context is specified, the project name will sourced from the provider configuration parameter project_name.
    Description string
    Name string
    Packs []ClusterProfilePackArgs
    For packs of type spectro, helm, and manifest, at least one pack must be specified.
    ProfileVariables ClusterProfileProfileVariablesArgs
    List of variables for the cluster profile.
    Tags []string
    A list of tags to be applied to the cluster. Tags must be in the form of key:value.
    Timeouts ClusterProfileTimeoutsArgs
    Type string
    Specify the cluster profile type to use. Allowed values are cluster, infra, add-on, and system. These values map to the following User Interface (UI) labels. Use the value ' cluster ' for a Full cluster profile.For an Infrastructure cluster profile, use the value infra; for an Add-on cluster profile, use the value add-on.System cluster profiles can be specified using the value system. To learn more about cluster profiles, refer to the Cluster Profile documentation. Default value is add-on.
    Version string
    Version of the cluster profile. Defaults to '1.0.0'.
    cloud String
    Specify the infrastructure provider the cluster profile is for. Only Palette supported infrastructure providers can be used. The supported cloud types are - all, aws, azure, gcp, vsphere, openstack, maas, virtual, baremetal, eks, aks, edge-native, generic, and gke or any custom cloud provider registered in Palette, e.g., nutanix.If the value is set to all, then the type must be set to add-on. Otherwise, the cluster profile may be incompatible with other providers. Default value is all.
    clusterProfileId String
    The ID of this resource.
    context String
    The context of the cluster profile. Allowed values are project or tenant. Default value is project. If the project context is specified, the project name will sourced from the provider configuration parameter project_name.
    description String
    name String
    packs List<ClusterProfilePack>
    For packs of type spectro, helm, and manifest, at least one pack must be specified.
    profileVariables ClusterProfileProfileVariables
    List of variables for the cluster profile.
    tags List<String>
    A list of tags to be applied to the cluster. Tags must be in the form of key:value.
    timeouts ClusterProfileTimeouts
    type String
    Specify the cluster profile type to use. Allowed values are cluster, infra, add-on, and system. These values map to the following User Interface (UI) labels. Use the value ' cluster ' for a Full cluster profile.For an Infrastructure cluster profile, use the value infra; for an Add-on cluster profile, use the value add-on.System cluster profiles can be specified using the value system. To learn more about cluster profiles, refer to the Cluster Profile documentation. Default value is add-on.
    version String
    Version of the cluster profile. Defaults to '1.0.0'.
    cloud string
    Specify the infrastructure provider the cluster profile is for. Only Palette supported infrastructure providers can be used. The supported cloud types are - all, aws, azure, gcp, vsphere, openstack, maas, virtual, baremetal, eks, aks, edge-native, generic, and gke or any custom cloud provider registered in Palette, e.g., nutanix.If the value is set to all, then the type must be set to add-on. Otherwise, the cluster profile may be incompatible with other providers. Default value is all.
    clusterProfileId string
    The ID of this resource.
    context string
    The context of the cluster profile. Allowed values are project or tenant. Default value is project. If the project context is specified, the project name will sourced from the provider configuration parameter project_name.
    description string
    name string
    packs ClusterProfilePack[]
    For packs of type spectro, helm, and manifest, at least one pack must be specified.
    profileVariables ClusterProfileProfileVariables
    List of variables for the cluster profile.
    tags string[]
    A list of tags to be applied to the cluster. Tags must be in the form of key:value.
    timeouts ClusterProfileTimeouts
    type string
    Specify the cluster profile type to use. Allowed values are cluster, infra, add-on, and system. These values map to the following User Interface (UI) labels. Use the value ' cluster ' for a Full cluster profile.For an Infrastructure cluster profile, use the value infra; for an Add-on cluster profile, use the value add-on.System cluster profiles can be specified using the value system. To learn more about cluster profiles, refer to the Cluster Profile documentation. Default value is add-on.
    version string
    Version of the cluster profile. Defaults to '1.0.0'.
    cloud str
    Specify the infrastructure provider the cluster profile is for. Only Palette supported infrastructure providers can be used. The supported cloud types are - all, aws, azure, gcp, vsphere, openstack, maas, virtual, baremetal, eks, aks, edge-native, generic, and gke or any custom cloud provider registered in Palette, e.g., nutanix.If the value is set to all, then the type must be set to add-on. Otherwise, the cluster profile may be incompatible with other providers. Default value is all.
    cluster_profile_id str
    The ID of this resource.
    context str
    The context of the cluster profile. Allowed values are project or tenant. Default value is project. If the project context is specified, the project name will sourced from the provider configuration parameter project_name.
    description str
    name str
    packs Sequence[ClusterProfilePackArgs]
    For packs of type spectro, helm, and manifest, at least one pack must be specified.
    profile_variables ClusterProfileProfileVariablesArgs
    List of variables for the cluster profile.
    tags Sequence[str]
    A list of tags to be applied to the cluster. Tags must be in the form of key:value.
    timeouts ClusterProfileTimeoutsArgs
    type str
    Specify the cluster profile type to use. Allowed values are cluster, infra, add-on, and system. These values map to the following User Interface (UI) labels. Use the value ' cluster ' for a Full cluster profile.For an Infrastructure cluster profile, use the value infra; for an Add-on cluster profile, use the value add-on.System cluster profiles can be specified using the value system. To learn more about cluster profiles, refer to the Cluster Profile documentation. Default value is add-on.
    version str
    Version of the cluster profile. Defaults to '1.0.0'.
    cloud String
    Specify the infrastructure provider the cluster profile is for. Only Palette supported infrastructure providers can be used. The supported cloud types are - all, aws, azure, gcp, vsphere, openstack, maas, virtual, baremetal, eks, aks, edge-native, generic, and gke or any custom cloud provider registered in Palette, e.g., nutanix.If the value is set to all, then the type must be set to add-on. Otherwise, the cluster profile may be incompatible with other providers. Default value is all.
    clusterProfileId String
    The ID of this resource.
    context String
    The context of the cluster profile. Allowed values are project or tenant. Default value is project. If the project context is specified, the project name will sourced from the provider configuration parameter project_name.
    description String
    name String
    packs List<Property Map>
    For packs of type spectro, helm, and manifest, at least one pack must be specified.
    profileVariables Property Map
    List of variables for the cluster profile.
    tags List<String>
    A list of tags to be applied to the cluster. Tags must be in the form of key:value.
    timeouts Property Map
    type String
    Specify the cluster profile type to use. Allowed values are cluster, infra, add-on, and system. These values map to the following User Interface (UI) labels. Use the value ' cluster ' for a Full cluster profile.For an Infrastructure cluster profile, use the value infra; for an Add-on cluster profile, use the value add-on.System cluster profiles can be specified using the value system. To learn more about cluster profiles, refer to the Cluster Profile documentation. Default value is add-on.
    version String
    Version of the cluster profile. Defaults to '1.0.0'.

    Outputs

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

    Get an existing ClusterProfile 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?: ClusterProfileState, opts?: CustomResourceOptions): ClusterProfile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cloud: Optional[str] = None,
            cluster_profile_id: Optional[str] = None,
            context: Optional[str] = None,
            description: Optional[str] = None,
            name: Optional[str] = None,
            packs: Optional[Sequence[ClusterProfilePackArgs]] = None,
            profile_variables: Optional[ClusterProfileProfileVariablesArgs] = None,
            tags: Optional[Sequence[str]] = None,
            timeouts: Optional[ClusterProfileTimeoutsArgs] = None,
            type: Optional[str] = None,
            version: Optional[str] = None) -> ClusterProfile
    func GetClusterProfile(ctx *Context, name string, id IDInput, state *ClusterProfileState, opts ...ResourceOption) (*ClusterProfile, error)
    public static ClusterProfile Get(string name, Input<string> id, ClusterProfileState? state, CustomResourceOptions? opts = null)
    public static ClusterProfile get(String name, Output<String> id, ClusterProfileState state, CustomResourceOptions options)
    resources:  _:    type: spectrocloud:ClusterProfile    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:
    Cloud string
    Specify the infrastructure provider the cluster profile is for. Only Palette supported infrastructure providers can be used. The supported cloud types are - all, aws, azure, gcp, vsphere, openstack, maas, virtual, baremetal, eks, aks, edge-native, generic, and gke or any custom cloud provider registered in Palette, e.g., nutanix.If the value is set to all, then the type must be set to add-on. Otherwise, the cluster profile may be incompatible with other providers. Default value is all.
    ClusterProfileId string
    The ID of this resource.
    Context string
    The context of the cluster profile. Allowed values are project or tenant. Default value is project. If the project context is specified, the project name will sourced from the provider configuration parameter project_name.
    Description string
    Name string
    Packs List<ClusterProfilePack>
    For packs of type spectro, helm, and manifest, at least one pack must be specified.
    ProfileVariables ClusterProfileProfileVariables
    List of variables for the cluster profile.
    Tags List<string>
    A list of tags to be applied to the cluster. Tags must be in the form of key:value.
    Timeouts ClusterProfileTimeouts
    Type string
    Specify the cluster profile type to use. Allowed values are cluster, infra, add-on, and system. These values map to the following User Interface (UI) labels. Use the value ' cluster ' for a Full cluster profile.For an Infrastructure cluster profile, use the value infra; for an Add-on cluster profile, use the value add-on.System cluster profiles can be specified using the value system. To learn more about cluster profiles, refer to the Cluster Profile documentation. Default value is add-on.
    Version string
    Version of the cluster profile. Defaults to '1.0.0'.
    Cloud string
    Specify the infrastructure provider the cluster profile is for. Only Palette supported infrastructure providers can be used. The supported cloud types are - all, aws, azure, gcp, vsphere, openstack, maas, virtual, baremetal, eks, aks, edge-native, generic, and gke or any custom cloud provider registered in Palette, e.g., nutanix.If the value is set to all, then the type must be set to add-on. Otherwise, the cluster profile may be incompatible with other providers. Default value is all.
    ClusterProfileId string
    The ID of this resource.
    Context string
    The context of the cluster profile. Allowed values are project or tenant. Default value is project. If the project context is specified, the project name will sourced from the provider configuration parameter project_name.
    Description string
    Name string
    Packs []ClusterProfilePackArgs
    For packs of type spectro, helm, and manifest, at least one pack must be specified.
    ProfileVariables ClusterProfileProfileVariablesArgs
    List of variables for the cluster profile.
    Tags []string
    A list of tags to be applied to the cluster. Tags must be in the form of key:value.
    Timeouts ClusterProfileTimeoutsArgs
    Type string
    Specify the cluster profile type to use. Allowed values are cluster, infra, add-on, and system. These values map to the following User Interface (UI) labels. Use the value ' cluster ' for a Full cluster profile.For an Infrastructure cluster profile, use the value infra; for an Add-on cluster profile, use the value add-on.System cluster profiles can be specified using the value system. To learn more about cluster profiles, refer to the Cluster Profile documentation. Default value is add-on.
    Version string
    Version of the cluster profile. Defaults to '1.0.0'.
    cloud String
    Specify the infrastructure provider the cluster profile is for. Only Palette supported infrastructure providers can be used. The supported cloud types are - all, aws, azure, gcp, vsphere, openstack, maas, virtual, baremetal, eks, aks, edge-native, generic, and gke or any custom cloud provider registered in Palette, e.g., nutanix.If the value is set to all, then the type must be set to add-on. Otherwise, the cluster profile may be incompatible with other providers. Default value is all.
    clusterProfileId String
    The ID of this resource.
    context String
    The context of the cluster profile. Allowed values are project or tenant. Default value is project. If the project context is specified, the project name will sourced from the provider configuration parameter project_name.
    description String
    name String
    packs List<ClusterProfilePack>
    For packs of type spectro, helm, and manifest, at least one pack must be specified.
    profileVariables ClusterProfileProfileVariables
    List of variables for the cluster profile.
    tags List<String>
    A list of tags to be applied to the cluster. Tags must be in the form of key:value.
    timeouts ClusterProfileTimeouts
    type String
    Specify the cluster profile type to use. Allowed values are cluster, infra, add-on, and system. These values map to the following User Interface (UI) labels. Use the value ' cluster ' for a Full cluster profile.For an Infrastructure cluster profile, use the value infra; for an Add-on cluster profile, use the value add-on.System cluster profiles can be specified using the value system. To learn more about cluster profiles, refer to the Cluster Profile documentation. Default value is add-on.
    version String
    Version of the cluster profile. Defaults to '1.0.0'.
    cloud string
    Specify the infrastructure provider the cluster profile is for. Only Palette supported infrastructure providers can be used. The supported cloud types are - all, aws, azure, gcp, vsphere, openstack, maas, virtual, baremetal, eks, aks, edge-native, generic, and gke or any custom cloud provider registered in Palette, e.g., nutanix.If the value is set to all, then the type must be set to add-on. Otherwise, the cluster profile may be incompatible with other providers. Default value is all.
    clusterProfileId string
    The ID of this resource.
    context string
    The context of the cluster profile. Allowed values are project or tenant. Default value is project. If the project context is specified, the project name will sourced from the provider configuration parameter project_name.
    description string
    name string
    packs ClusterProfilePack[]
    For packs of type spectro, helm, and manifest, at least one pack must be specified.
    profileVariables ClusterProfileProfileVariables
    List of variables for the cluster profile.
    tags string[]
    A list of tags to be applied to the cluster. Tags must be in the form of key:value.
    timeouts ClusterProfileTimeouts
    type string
    Specify the cluster profile type to use. Allowed values are cluster, infra, add-on, and system. These values map to the following User Interface (UI) labels. Use the value ' cluster ' for a Full cluster profile.For an Infrastructure cluster profile, use the value infra; for an Add-on cluster profile, use the value add-on.System cluster profiles can be specified using the value system. To learn more about cluster profiles, refer to the Cluster Profile documentation. Default value is add-on.
    version string
    Version of the cluster profile. Defaults to '1.0.0'.
    cloud str
    Specify the infrastructure provider the cluster profile is for. Only Palette supported infrastructure providers can be used. The supported cloud types are - all, aws, azure, gcp, vsphere, openstack, maas, virtual, baremetal, eks, aks, edge-native, generic, and gke or any custom cloud provider registered in Palette, e.g., nutanix.If the value is set to all, then the type must be set to add-on. Otherwise, the cluster profile may be incompatible with other providers. Default value is all.
    cluster_profile_id str
    The ID of this resource.
    context str
    The context of the cluster profile. Allowed values are project or tenant. Default value is project. If the project context is specified, the project name will sourced from the provider configuration parameter project_name.
    description str
    name str
    packs Sequence[ClusterProfilePackArgs]
    For packs of type spectro, helm, and manifest, at least one pack must be specified.
    profile_variables ClusterProfileProfileVariablesArgs
    List of variables for the cluster profile.
    tags Sequence[str]
    A list of tags to be applied to the cluster. Tags must be in the form of key:value.
    timeouts ClusterProfileTimeoutsArgs
    type str
    Specify the cluster profile type to use. Allowed values are cluster, infra, add-on, and system. These values map to the following User Interface (UI) labels. Use the value ' cluster ' for a Full cluster profile.For an Infrastructure cluster profile, use the value infra; for an Add-on cluster profile, use the value add-on.System cluster profiles can be specified using the value system. To learn more about cluster profiles, refer to the Cluster Profile documentation. Default value is add-on.
    version str
    Version of the cluster profile. Defaults to '1.0.0'.
    cloud String
    Specify the infrastructure provider the cluster profile is for. Only Palette supported infrastructure providers can be used. The supported cloud types are - all, aws, azure, gcp, vsphere, openstack, maas, virtual, baremetal, eks, aks, edge-native, generic, and gke or any custom cloud provider registered in Palette, e.g., nutanix.If the value is set to all, then the type must be set to add-on. Otherwise, the cluster profile may be incompatible with other providers. Default value is all.
    clusterProfileId String
    The ID of this resource.
    context String
    The context of the cluster profile. Allowed values are project or tenant. Default value is project. If the project context is specified, the project name will sourced from the provider configuration parameter project_name.
    description String
    name String
    packs List<Property Map>
    For packs of type spectro, helm, and manifest, at least one pack must be specified.
    profileVariables Property Map
    List of variables for the cluster profile.
    tags List<String>
    A list of tags to be applied to the cluster. Tags must be in the form of key:value.
    timeouts Property Map
    type String
    Specify the cluster profile type to use. Allowed values are cluster, infra, add-on, and system. These values map to the following User Interface (UI) labels. Use the value ' cluster ' for a Full cluster profile.For an Infrastructure cluster profile, use the value infra; for an Add-on cluster profile, use the value add-on.System cluster profiles can be specified using the value system. To learn more about cluster profiles, refer to the Cluster Profile documentation. Default value is add-on.
    version String
    Version of the cluster profile. Defaults to '1.0.0'.

    Supporting Types

    ClusterProfilePack, ClusterProfilePackArgs

    Name string
    The name of the pack. The name must be unique within the cluster profile.
    Manifests List<ClusterProfilePackManifest>
    RegistryUid string
    The registry UID of the pack. The registry UID is the unique identifier of the registry. This attribute is required if there is more than one registry that contains a pack with the same name.
    Tag string
    The tag of the pack. The tag is the version of the pack. This attribute is required if the pack type is spectro or helm.
    Type string
    The type of the pack. Allowed values are spectro, manifest, helm, or oci. The default value is spectro. If using an OCI registry for pack, set the type to oci.
    Uid string
    The unique identifier of the pack. The value can be looked up using the spectrocloud.getPack data source. This value is required if the pack type is spectro and for helm if the chart is from a public helm registry.
    Values string
    The values of the pack. The values are the configuration values of the pack. The values are specified in YAML format.
    Name string
    The name of the pack. The name must be unique within the cluster profile.
    Manifests []ClusterProfilePackManifest
    RegistryUid string
    The registry UID of the pack. The registry UID is the unique identifier of the registry. This attribute is required if there is more than one registry that contains a pack with the same name.
    Tag string
    The tag of the pack. The tag is the version of the pack. This attribute is required if the pack type is spectro or helm.
    Type string
    The type of the pack. Allowed values are spectro, manifest, helm, or oci. The default value is spectro. If using an OCI registry for pack, set the type to oci.
    Uid string
    The unique identifier of the pack. The value can be looked up using the spectrocloud.getPack data source. This value is required if the pack type is spectro and for helm if the chart is from a public helm registry.
    Values string
    The values of the pack. The values are the configuration values of the pack. The values are specified in YAML format.
    name String
    The name of the pack. The name must be unique within the cluster profile.
    manifests List<ClusterProfilePackManifest>
    registryUid String
    The registry UID of the pack. The registry UID is the unique identifier of the registry. This attribute is required if there is more than one registry that contains a pack with the same name.
    tag String
    The tag of the pack. The tag is the version of the pack. This attribute is required if the pack type is spectro or helm.
    type String
    The type of the pack. Allowed values are spectro, manifest, helm, or oci. The default value is spectro. If using an OCI registry for pack, set the type to oci.
    uid String
    The unique identifier of the pack. The value can be looked up using the spectrocloud.getPack data source. This value is required if the pack type is spectro and for helm if the chart is from a public helm registry.
    values String
    The values of the pack. The values are the configuration values of the pack. The values are specified in YAML format.
    name string
    The name of the pack. The name must be unique within the cluster profile.
    manifests ClusterProfilePackManifest[]
    registryUid string
    The registry UID of the pack. The registry UID is the unique identifier of the registry. This attribute is required if there is more than one registry that contains a pack with the same name.
    tag string
    The tag of the pack. The tag is the version of the pack. This attribute is required if the pack type is spectro or helm.
    type string
    The type of the pack. Allowed values are spectro, manifest, helm, or oci. The default value is spectro. If using an OCI registry for pack, set the type to oci.
    uid string
    The unique identifier of the pack. The value can be looked up using the spectrocloud.getPack data source. This value is required if the pack type is spectro and for helm if the chart is from a public helm registry.
    values string
    The values of the pack. The values are the configuration values of the pack. The values are specified in YAML format.
    name str
    The name of the pack. The name must be unique within the cluster profile.
    manifests Sequence[ClusterProfilePackManifest]
    registry_uid str
    The registry UID of the pack. The registry UID is the unique identifier of the registry. This attribute is required if there is more than one registry that contains a pack with the same name.
    tag str
    The tag of the pack. The tag is the version of the pack. This attribute is required if the pack type is spectro or helm.
    type str
    The type of the pack. Allowed values are spectro, manifest, helm, or oci. The default value is spectro. If using an OCI registry for pack, set the type to oci.
    uid str
    The unique identifier of the pack. The value can be looked up using the spectrocloud.getPack data source. This value is required if the pack type is spectro and for helm if the chart is from a public helm registry.
    values str
    The values of the pack. The values are the configuration values of the pack. The values are specified in YAML format.
    name String
    The name of the pack. The name must be unique within the cluster profile.
    manifests List<Property Map>
    registryUid String
    The registry UID of the pack. The registry UID is the unique identifier of the registry. This attribute is required if there is more than one registry that contains a pack with the same name.
    tag String
    The tag of the pack. The tag is the version of the pack. This attribute is required if the pack type is spectro or helm.
    type String
    The type of the pack. Allowed values are spectro, manifest, helm, or oci. The default value is spectro. If using an OCI registry for pack, set the type to oci.
    uid String
    The unique identifier of the pack. The value can be looked up using the spectrocloud.getPack data source. This value is required if the pack type is spectro and for helm if the chart is from a public helm registry.
    values String
    The values of the pack. The values are the configuration values of the pack. The values are specified in YAML format.

    ClusterProfilePackManifest, ClusterProfilePackManifestArgs

    Content string
    The content of the manifest. The content is the YAML content of the manifest.
    Name string
    The name of the manifest. The name must be unique within the pack.
    Uid string
    Content string
    The content of the manifest. The content is the YAML content of the manifest.
    Name string
    The name of the manifest. The name must be unique within the pack.
    Uid string
    content String
    The content of the manifest. The content is the YAML content of the manifest.
    name String
    The name of the manifest. The name must be unique within the pack.
    uid String
    content string
    The content of the manifest. The content is the YAML content of the manifest.
    name string
    The name of the manifest. The name must be unique within the pack.
    uid string
    content str
    The content of the manifest. The content is the YAML content of the manifest.
    name str
    The name of the manifest. The name must be unique within the pack.
    uid str
    content String
    The content of the manifest. The content is the YAML content of the manifest.
    name String
    The name of the manifest. The name must be unique within the pack.
    uid String

    ClusterProfileProfileVariables, ClusterProfileProfileVariablesArgs

    ClusterProfileProfileVariablesVariable, ClusterProfileProfileVariablesVariableArgs

    DisplayName string
    The display name of the variable should be unique among variables.
    Name string
    The name of the variable should be unique among variables.
    DefaultValue string
    The default value of the variable.
    Description string
    The description of the variable.
    Format string
    The format of the variable. Default is string, format field can only be set during cluster profile creation. Allowed formats include string, number, boolean, ipv4, ipv4cidr, ipv6, version.
    Hidden bool
    If hidden is set to true, then variable will be hidden for overriding the value. By default the hidden flag will be set to false.
    Immutable bool
    If immutable is set to true, then variable value can't be editable. By default the immutable flag will be set to false.
    IsSensitive bool
    If is_sensitive is set to true, then default value will be masked. By default the is_sensitive flag will be set to false.
    Regex string
    Regular expression pattern which the variable value must match.
    Required bool
    The required to specify if the variable is optional or mandatory. If it is mandatory then default value must be provided.
    DisplayName string
    The display name of the variable should be unique among variables.
    Name string
    The name of the variable should be unique among variables.
    DefaultValue string
    The default value of the variable.
    Description string
    The description of the variable.
    Format string
    The format of the variable. Default is string, format field can only be set during cluster profile creation. Allowed formats include string, number, boolean, ipv4, ipv4cidr, ipv6, version.
    Hidden bool
    If hidden is set to true, then variable will be hidden for overriding the value. By default the hidden flag will be set to false.
    Immutable bool
    If immutable is set to true, then variable value can't be editable. By default the immutable flag will be set to false.
    IsSensitive bool
    If is_sensitive is set to true, then default value will be masked. By default the is_sensitive flag will be set to false.
    Regex string
    Regular expression pattern which the variable value must match.
    Required bool
    The required to specify if the variable is optional or mandatory. If it is mandatory then default value must be provided.
    displayName String
    The display name of the variable should be unique among variables.
    name String
    The name of the variable should be unique among variables.
    defaultValue String
    The default value of the variable.
    description String
    The description of the variable.
    format String
    The format of the variable. Default is string, format field can only be set during cluster profile creation. Allowed formats include string, number, boolean, ipv4, ipv4cidr, ipv6, version.
    hidden Boolean
    If hidden is set to true, then variable will be hidden for overriding the value. By default the hidden flag will be set to false.
    immutable Boolean
    If immutable is set to true, then variable value can't be editable. By default the immutable flag will be set to false.
    isSensitive Boolean
    If is_sensitive is set to true, then default value will be masked. By default the is_sensitive flag will be set to false.
    regex String
    Regular expression pattern which the variable value must match.
    required Boolean
    The required to specify if the variable is optional or mandatory. If it is mandatory then default value must be provided.
    displayName string
    The display name of the variable should be unique among variables.
    name string
    The name of the variable should be unique among variables.
    defaultValue string
    The default value of the variable.
    description string
    The description of the variable.
    format string
    The format of the variable. Default is string, format field can only be set during cluster profile creation. Allowed formats include string, number, boolean, ipv4, ipv4cidr, ipv6, version.
    hidden boolean
    If hidden is set to true, then variable will be hidden for overriding the value. By default the hidden flag will be set to false.
    immutable boolean
    If immutable is set to true, then variable value can't be editable. By default the immutable flag will be set to false.
    isSensitive boolean
    If is_sensitive is set to true, then default value will be masked. By default the is_sensitive flag will be set to false.
    regex string
    Regular expression pattern which the variable value must match.
    required boolean
    The required to specify if the variable is optional or mandatory. If it is mandatory then default value must be provided.
    display_name str
    The display name of the variable should be unique among variables.
    name str
    The name of the variable should be unique among variables.
    default_value str
    The default value of the variable.
    description str
    The description of the variable.
    format str
    The format of the variable. Default is string, format field can only be set during cluster profile creation. Allowed formats include string, number, boolean, ipv4, ipv4cidr, ipv6, version.
    hidden bool
    If hidden is set to true, then variable will be hidden for overriding the value. By default the hidden flag will be set to false.
    immutable bool
    If immutable is set to true, then variable value can't be editable. By default the immutable flag will be set to false.
    is_sensitive bool
    If is_sensitive is set to true, then default value will be masked. By default the is_sensitive flag will be set to false.
    regex str
    Regular expression pattern which the variable value must match.
    required bool
    The required to specify if the variable is optional or mandatory. If it is mandatory then default value must be provided.
    displayName String
    The display name of the variable should be unique among variables.
    name String
    The name of the variable should be unique among variables.
    defaultValue String
    The default value of the variable.
    description String
    The description of the variable.
    format String
    The format of the variable. Default is string, format field can only be set during cluster profile creation. Allowed formats include string, number, boolean, ipv4, ipv4cidr, ipv6, version.
    hidden Boolean
    If hidden is set to true, then variable will be hidden for overriding the value. By default the hidden flag will be set to false.
    immutable Boolean
    If immutable is set to true, then variable value can't be editable. By default the immutable flag will be set to false.
    isSensitive Boolean
    If is_sensitive is set to true, then default value will be masked. By default the is_sensitive flag will be set to false.
    regex String
    Regular expression pattern which the variable value must match.
    required Boolean
    The required to specify if the variable is optional or mandatory. If it is mandatory then default value must be provided.

    ClusterProfileTimeouts, ClusterProfileTimeoutsArgs

    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