1. Packages
  2. Gitlab Provider
  3. API Docs
  4. ProjectCluster
GitLab v8.10.0 published on Friday, Mar 21, 2025 by Pulumi

gitlab.ProjectCluster

Explore with Pulumi AI

The gitlab.ProjectCluster resource allows to manage the lifecycle of a project cluster.

This is deprecated GitLab feature since 14.5

Upstream API: GitLab REST API docs

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as gitlab from "@pulumi/gitlab";

const foo = new gitlab.Project("foo", {name: "foo-project"});
const bar = new gitlab.ProjectCluster("bar", {
    project: foo.id,
    name: "bar-cluster",
    domain: "example.com",
    enabled: true,
    kubernetesApiUrl: "https://124.124.124",
    kubernetesToken: "some-token",
    kubernetesCaCert: "some-cert",
    kubernetesNamespace: "namespace",
    kubernetesAuthorizationType: "rbac",
    environmentScope: "*",
    managementProjectId: "123456",
});
Copy
import pulumi
import pulumi_gitlab as gitlab

foo = gitlab.Project("foo", name="foo-project")
bar = gitlab.ProjectCluster("bar",
    project=foo.id,
    name="bar-cluster",
    domain="example.com",
    enabled=True,
    kubernetes_api_url="https://124.124.124",
    kubernetes_token="some-token",
    kubernetes_ca_cert="some-cert",
    kubernetes_namespace="namespace",
    kubernetes_authorization_type="rbac",
    environment_scope="*",
    management_project_id="123456")
Copy
package main

import (
	"github.com/pulumi/pulumi-gitlab/sdk/v8/go/gitlab"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		foo, err := gitlab.NewProject(ctx, "foo", &gitlab.ProjectArgs{
			Name: pulumi.String("foo-project"),
		})
		if err != nil {
			return err
		}
		_, err = gitlab.NewProjectCluster(ctx, "bar", &gitlab.ProjectClusterArgs{
			Project:                     foo.ID(),
			Name:                        pulumi.String("bar-cluster"),
			Domain:                      pulumi.String("example.com"),
			Enabled:                     pulumi.Bool(true),
			KubernetesApiUrl:            pulumi.String("https://124.124.124"),
			KubernetesToken:             pulumi.String("some-token"),
			KubernetesCaCert:            pulumi.String("some-cert"),
			KubernetesNamespace:         pulumi.String("namespace"),
			KubernetesAuthorizationType: pulumi.String("rbac"),
			EnvironmentScope:            pulumi.String("*"),
			ManagementProjectId:         pulumi.String("123456"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using GitLab = Pulumi.GitLab;

return await Deployment.RunAsync(() => 
{
    var foo = new GitLab.Project("foo", new()
    {
        Name = "foo-project",
    });

    var bar = new GitLab.ProjectCluster("bar", new()
    {
        Project = foo.Id,
        Name = "bar-cluster",
        Domain = "example.com",
        Enabled = true,
        KubernetesApiUrl = "https://124.124.124",
        KubernetesToken = "some-token",
        KubernetesCaCert = "some-cert",
        KubernetesNamespace = "namespace",
        KubernetesAuthorizationType = "rbac",
        EnvironmentScope = "*",
        ManagementProjectId = "123456",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gitlab.Project;
import com.pulumi.gitlab.ProjectArgs;
import com.pulumi.gitlab.ProjectCluster;
import com.pulumi.gitlab.ProjectClusterArgs;
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 foo = new Project("foo", ProjectArgs.builder()
            .name("foo-project")
            .build());

        var bar = new ProjectCluster("bar", ProjectClusterArgs.builder()
            .project(foo.id())
            .name("bar-cluster")
            .domain("example.com")
            .enabled(true)
            .kubernetesApiUrl("https://124.124.124")
            .kubernetesToken("some-token")
            .kubernetesCaCert("some-cert")
            .kubernetesNamespace("namespace")
            .kubernetesAuthorizationType("rbac")
            .environmentScope("*")
            .managementProjectId("123456")
            .build());

    }
}
Copy
resources:
  foo:
    type: gitlab:Project
    properties:
      name: foo-project
  bar:
    type: gitlab:ProjectCluster
    properties:
      project: ${foo.id}
      name: bar-cluster
      domain: example.com
      enabled: true
      kubernetesApiUrl: https://124.124.124
      kubernetesToken: some-token
      kubernetesCaCert: some-cert
      kubernetesNamespace: namespace
      kubernetesAuthorizationType: rbac
      environmentScope: '*'
      managementProjectId: '123456'
Copy

Create ProjectCluster Resource

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

Constructor syntax

new ProjectCluster(name: string, args: ProjectClusterArgs, opts?: CustomResourceOptions);
@overload
def ProjectCluster(resource_name: str,
                   args: ProjectClusterArgs,
                   opts: Optional[ResourceOptions] = None)

@overload
def ProjectCluster(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   kubernetes_api_url: Optional[str] = None,
                   kubernetes_token: Optional[str] = None,
                   project: Optional[str] = None,
                   domain: Optional[str] = None,
                   enabled: Optional[bool] = None,
                   environment_scope: Optional[str] = None,
                   kubernetes_authorization_type: Optional[str] = None,
                   kubernetes_ca_cert: Optional[str] = None,
                   kubernetes_namespace: Optional[str] = None,
                   managed: Optional[bool] = None,
                   management_project_id: Optional[str] = None,
                   name: Optional[str] = None)
func NewProjectCluster(ctx *Context, name string, args ProjectClusterArgs, opts ...ResourceOption) (*ProjectCluster, error)
public ProjectCluster(string name, ProjectClusterArgs args, CustomResourceOptions? opts = null)
public ProjectCluster(String name, ProjectClusterArgs args)
public ProjectCluster(String name, ProjectClusterArgs args, CustomResourceOptions options)
type: gitlab:ProjectCluster
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ProjectClusterArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ProjectClusterArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ProjectClusterArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ProjectClusterArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ProjectClusterArgs
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 projectClusterResource = new GitLab.ProjectCluster("projectClusterResource", new()
{
    KubernetesApiUrl = "string",
    KubernetesToken = "string",
    Project = "string",
    Domain = "string",
    Enabled = false,
    EnvironmentScope = "string",
    KubernetesAuthorizationType = "string",
    KubernetesCaCert = "string",
    KubernetesNamespace = "string",
    Managed = false,
    ManagementProjectId = "string",
    Name = "string",
});
Copy
example, err := gitlab.NewProjectCluster(ctx, "projectClusterResource", &gitlab.ProjectClusterArgs{
	KubernetesApiUrl:            pulumi.String("string"),
	KubernetesToken:             pulumi.String("string"),
	Project:                     pulumi.String("string"),
	Domain:                      pulumi.String("string"),
	Enabled:                     pulumi.Bool(false),
	EnvironmentScope:            pulumi.String("string"),
	KubernetesAuthorizationType: pulumi.String("string"),
	KubernetesCaCert:            pulumi.String("string"),
	KubernetesNamespace:         pulumi.String("string"),
	Managed:                     pulumi.Bool(false),
	ManagementProjectId:         pulumi.String("string"),
	Name:                        pulumi.String("string"),
})
Copy
var projectClusterResource = new ProjectCluster("projectClusterResource", ProjectClusterArgs.builder()
    .kubernetesApiUrl("string")
    .kubernetesToken("string")
    .project("string")
    .domain("string")
    .enabled(false)
    .environmentScope("string")
    .kubernetesAuthorizationType("string")
    .kubernetesCaCert("string")
    .kubernetesNamespace("string")
    .managed(false)
    .managementProjectId("string")
    .name("string")
    .build());
Copy
project_cluster_resource = gitlab.ProjectCluster("projectClusterResource",
    kubernetes_api_url="string",
    kubernetes_token="string",
    project="string",
    domain="string",
    enabled=False,
    environment_scope="string",
    kubernetes_authorization_type="string",
    kubernetes_ca_cert="string",
    kubernetes_namespace="string",
    managed=False,
    management_project_id="string",
    name="string")
Copy
const projectClusterResource = new gitlab.ProjectCluster("projectClusterResource", {
    kubernetesApiUrl: "string",
    kubernetesToken: "string",
    project: "string",
    domain: "string",
    enabled: false,
    environmentScope: "string",
    kubernetesAuthorizationType: "string",
    kubernetesCaCert: "string",
    kubernetesNamespace: "string",
    managed: false,
    managementProjectId: "string",
    name: "string",
});
Copy
type: gitlab:ProjectCluster
properties:
    domain: string
    enabled: false
    environmentScope: string
    kubernetesApiUrl: string
    kubernetesAuthorizationType: string
    kubernetesCaCert: string
    kubernetesNamespace: string
    kubernetesToken: string
    managed: false
    managementProjectId: string
    name: string
    project: string
Copy

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

KubernetesApiUrl This property is required. string
The URL to access the Kubernetes API.
KubernetesToken This property is required. string
The token to authenticate against Kubernetes.
Project
This property is required.
Changes to this property will trigger replacement.
string
The id of the project to add the cluster to.
Domain string
The base domain of the cluster.
Enabled Changes to this property will trigger replacement. bool
Determines if cluster is active or not. Defaults to true. This attribute cannot be read.
EnvironmentScope string
The associated environment to the cluster. Defaults to *.
KubernetesAuthorizationType Changes to this property will trigger replacement. string
The cluster authorization type. Valid values are rbac, abac, unknown_authorization. Defaults to rbac.
KubernetesCaCert string
TLS certificate (needed if API is using a self-signed TLS certificate).
KubernetesNamespace string
The unique namespace related to the project.
Managed Changes to this property will trigger replacement. bool
Determines if cluster is managed by gitlab or not. Defaults to true. This attribute cannot be read.
ManagementProjectId string
The ID of the management project for the cluster.
Name string
The name of cluster.
KubernetesApiUrl This property is required. string
The URL to access the Kubernetes API.
KubernetesToken This property is required. string
The token to authenticate against Kubernetes.
Project
This property is required.
Changes to this property will trigger replacement.
string
The id of the project to add the cluster to.
Domain string
The base domain of the cluster.
Enabled Changes to this property will trigger replacement. bool
Determines if cluster is active or not. Defaults to true. This attribute cannot be read.
EnvironmentScope string
The associated environment to the cluster. Defaults to *.
KubernetesAuthorizationType Changes to this property will trigger replacement. string
The cluster authorization type. Valid values are rbac, abac, unknown_authorization. Defaults to rbac.
KubernetesCaCert string
TLS certificate (needed if API is using a self-signed TLS certificate).
KubernetesNamespace string
The unique namespace related to the project.
Managed Changes to this property will trigger replacement. bool
Determines if cluster is managed by gitlab or not. Defaults to true. This attribute cannot be read.
ManagementProjectId string
The ID of the management project for the cluster.
Name string
The name of cluster.
kubernetesApiUrl This property is required. String
The URL to access the Kubernetes API.
kubernetesToken This property is required. String
The token to authenticate against Kubernetes.
project
This property is required.
Changes to this property will trigger replacement.
String
The id of the project to add the cluster to.
domain String
The base domain of the cluster.
enabled Changes to this property will trigger replacement. Boolean
Determines if cluster is active or not. Defaults to true. This attribute cannot be read.
environmentScope String
The associated environment to the cluster. Defaults to *.
kubernetesAuthorizationType Changes to this property will trigger replacement. String
The cluster authorization type. Valid values are rbac, abac, unknown_authorization. Defaults to rbac.
kubernetesCaCert String
TLS certificate (needed if API is using a self-signed TLS certificate).
kubernetesNamespace String
The unique namespace related to the project.
managed Changes to this property will trigger replacement. Boolean
Determines if cluster is managed by gitlab or not. Defaults to true. This attribute cannot be read.
managementProjectId String
The ID of the management project for the cluster.
name String
The name of cluster.
kubernetesApiUrl This property is required. string
The URL to access the Kubernetes API.
kubernetesToken This property is required. string
The token to authenticate against Kubernetes.
project
This property is required.
Changes to this property will trigger replacement.
string
The id of the project to add the cluster to.
domain string
The base domain of the cluster.
enabled Changes to this property will trigger replacement. boolean
Determines if cluster is active or not. Defaults to true. This attribute cannot be read.
environmentScope string
The associated environment to the cluster. Defaults to *.
kubernetesAuthorizationType Changes to this property will trigger replacement. string
The cluster authorization type. Valid values are rbac, abac, unknown_authorization. Defaults to rbac.
kubernetesCaCert string
TLS certificate (needed if API is using a self-signed TLS certificate).
kubernetesNamespace string
The unique namespace related to the project.
managed Changes to this property will trigger replacement. boolean
Determines if cluster is managed by gitlab or not. Defaults to true. This attribute cannot be read.
managementProjectId string
The ID of the management project for the cluster.
name string
The name of cluster.
kubernetes_api_url This property is required. str
The URL to access the Kubernetes API.
kubernetes_token This property is required. str
The token to authenticate against Kubernetes.
project
This property is required.
Changes to this property will trigger replacement.
str
The id of the project to add the cluster to.
domain str
The base domain of the cluster.
enabled Changes to this property will trigger replacement. bool
Determines if cluster is active or not. Defaults to true. This attribute cannot be read.
environment_scope str
The associated environment to the cluster. Defaults to *.
kubernetes_authorization_type Changes to this property will trigger replacement. str
The cluster authorization type. Valid values are rbac, abac, unknown_authorization. Defaults to rbac.
kubernetes_ca_cert str
TLS certificate (needed if API is using a self-signed TLS certificate).
kubernetes_namespace str
The unique namespace related to the project.
managed Changes to this property will trigger replacement. bool
Determines if cluster is managed by gitlab or not. Defaults to true. This attribute cannot be read.
management_project_id str
The ID of the management project for the cluster.
name str
The name of cluster.
kubernetesApiUrl This property is required. String
The URL to access the Kubernetes API.
kubernetesToken This property is required. String
The token to authenticate against Kubernetes.
project
This property is required.
Changes to this property will trigger replacement.
String
The id of the project to add the cluster to.
domain String
The base domain of the cluster.
enabled Changes to this property will trigger replacement. Boolean
Determines if cluster is active or not. Defaults to true. This attribute cannot be read.
environmentScope String
The associated environment to the cluster. Defaults to *.
kubernetesAuthorizationType Changes to this property will trigger replacement. String
The cluster authorization type. Valid values are rbac, abac, unknown_authorization. Defaults to rbac.
kubernetesCaCert String
TLS certificate (needed if API is using a self-signed TLS certificate).
kubernetesNamespace String
The unique namespace related to the project.
managed Changes to this property will trigger replacement. Boolean
Determines if cluster is managed by gitlab or not. Defaults to true. This attribute cannot be read.
managementProjectId String
The ID of the management project for the cluster.
name String
The name of cluster.

Outputs

All input properties are implicitly available as output properties. Additionally, the ProjectCluster resource produces the following output properties:

ClusterType string
Cluster type.
CreatedAt string
Create time.
Id string
The provider-assigned unique ID for this managed resource.
PlatformType string
Platform type.
ProviderType string
Provider type.
ClusterType string
Cluster type.
CreatedAt string
Create time.
Id string
The provider-assigned unique ID for this managed resource.
PlatformType string
Platform type.
ProviderType string
Provider type.
clusterType String
Cluster type.
createdAt String
Create time.
id String
The provider-assigned unique ID for this managed resource.
platformType String
Platform type.
providerType String
Provider type.
clusterType string
Cluster type.
createdAt string
Create time.
id string
The provider-assigned unique ID for this managed resource.
platformType string
Platform type.
providerType string
Provider type.
cluster_type str
Cluster type.
created_at str
Create time.
id str
The provider-assigned unique ID for this managed resource.
platform_type str
Platform type.
provider_type str
Provider type.
clusterType String
Cluster type.
createdAt String
Create time.
id String
The provider-assigned unique ID for this managed resource.
platformType String
Platform type.
providerType String
Provider type.

Look up Existing ProjectCluster Resource

Get an existing ProjectCluster 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?: ProjectClusterState, opts?: CustomResourceOptions): ProjectCluster
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        cluster_type: Optional[str] = None,
        created_at: Optional[str] = None,
        domain: Optional[str] = None,
        enabled: Optional[bool] = None,
        environment_scope: Optional[str] = None,
        kubernetes_api_url: Optional[str] = None,
        kubernetes_authorization_type: Optional[str] = None,
        kubernetes_ca_cert: Optional[str] = None,
        kubernetes_namespace: Optional[str] = None,
        kubernetes_token: Optional[str] = None,
        managed: Optional[bool] = None,
        management_project_id: Optional[str] = None,
        name: Optional[str] = None,
        platform_type: Optional[str] = None,
        project: Optional[str] = None,
        provider_type: Optional[str] = None) -> ProjectCluster
func GetProjectCluster(ctx *Context, name string, id IDInput, state *ProjectClusterState, opts ...ResourceOption) (*ProjectCluster, error)
public static ProjectCluster Get(string name, Input<string> id, ProjectClusterState? state, CustomResourceOptions? opts = null)
public static ProjectCluster get(String name, Output<String> id, ProjectClusterState state, CustomResourceOptions options)
resources:  _:    type: gitlab:ProjectCluster    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
ClusterType string
Cluster type.
CreatedAt string
Create time.
Domain string
The base domain of the cluster.
Enabled Changes to this property will trigger replacement. bool
Determines if cluster is active or not. Defaults to true. This attribute cannot be read.
EnvironmentScope string
The associated environment to the cluster. Defaults to *.
KubernetesApiUrl string
The URL to access the Kubernetes API.
KubernetesAuthorizationType Changes to this property will trigger replacement. string
The cluster authorization type. Valid values are rbac, abac, unknown_authorization. Defaults to rbac.
KubernetesCaCert string
TLS certificate (needed if API is using a self-signed TLS certificate).
KubernetesNamespace string
The unique namespace related to the project.
KubernetesToken string
The token to authenticate against Kubernetes.
Managed Changes to this property will trigger replacement. bool
Determines if cluster is managed by gitlab or not. Defaults to true. This attribute cannot be read.
ManagementProjectId string
The ID of the management project for the cluster.
Name string
The name of cluster.
PlatformType string
Platform type.
Project Changes to this property will trigger replacement. string
The id of the project to add the cluster to.
ProviderType string
Provider type.
ClusterType string
Cluster type.
CreatedAt string
Create time.
Domain string
The base domain of the cluster.
Enabled Changes to this property will trigger replacement. bool
Determines if cluster is active or not. Defaults to true. This attribute cannot be read.
EnvironmentScope string
The associated environment to the cluster. Defaults to *.
KubernetesApiUrl string
The URL to access the Kubernetes API.
KubernetesAuthorizationType Changes to this property will trigger replacement. string
The cluster authorization type. Valid values are rbac, abac, unknown_authorization. Defaults to rbac.
KubernetesCaCert string
TLS certificate (needed if API is using a self-signed TLS certificate).
KubernetesNamespace string
The unique namespace related to the project.
KubernetesToken string
The token to authenticate against Kubernetes.
Managed Changes to this property will trigger replacement. bool
Determines if cluster is managed by gitlab or not. Defaults to true. This attribute cannot be read.
ManagementProjectId string
The ID of the management project for the cluster.
Name string
The name of cluster.
PlatformType string
Platform type.
Project Changes to this property will trigger replacement. string
The id of the project to add the cluster to.
ProviderType string
Provider type.
clusterType String
Cluster type.
createdAt String
Create time.
domain String
The base domain of the cluster.
enabled Changes to this property will trigger replacement. Boolean
Determines if cluster is active or not. Defaults to true. This attribute cannot be read.
environmentScope String
The associated environment to the cluster. Defaults to *.
kubernetesApiUrl String
The URL to access the Kubernetes API.
kubernetesAuthorizationType Changes to this property will trigger replacement. String
The cluster authorization type. Valid values are rbac, abac, unknown_authorization. Defaults to rbac.
kubernetesCaCert String
TLS certificate (needed if API is using a self-signed TLS certificate).
kubernetesNamespace String
The unique namespace related to the project.
kubernetesToken String
The token to authenticate against Kubernetes.
managed Changes to this property will trigger replacement. Boolean
Determines if cluster is managed by gitlab or not. Defaults to true. This attribute cannot be read.
managementProjectId String
The ID of the management project for the cluster.
name String
The name of cluster.
platformType String
Platform type.
project Changes to this property will trigger replacement. String
The id of the project to add the cluster to.
providerType String
Provider type.
clusterType string
Cluster type.
createdAt string
Create time.
domain string
The base domain of the cluster.
enabled Changes to this property will trigger replacement. boolean
Determines if cluster is active or not. Defaults to true. This attribute cannot be read.
environmentScope string
The associated environment to the cluster. Defaults to *.
kubernetesApiUrl string
The URL to access the Kubernetes API.
kubernetesAuthorizationType Changes to this property will trigger replacement. string
The cluster authorization type. Valid values are rbac, abac, unknown_authorization. Defaults to rbac.
kubernetesCaCert string
TLS certificate (needed if API is using a self-signed TLS certificate).
kubernetesNamespace string
The unique namespace related to the project.
kubernetesToken string
The token to authenticate against Kubernetes.
managed Changes to this property will trigger replacement. boolean
Determines if cluster is managed by gitlab or not. Defaults to true. This attribute cannot be read.
managementProjectId string
The ID of the management project for the cluster.
name string
The name of cluster.
platformType string
Platform type.
project Changes to this property will trigger replacement. string
The id of the project to add the cluster to.
providerType string
Provider type.
cluster_type str
Cluster type.
created_at str
Create time.
domain str
The base domain of the cluster.
enabled Changes to this property will trigger replacement. bool
Determines if cluster is active or not. Defaults to true. This attribute cannot be read.
environment_scope str
The associated environment to the cluster. Defaults to *.
kubernetes_api_url str
The URL to access the Kubernetes API.
kubernetes_authorization_type Changes to this property will trigger replacement. str
The cluster authorization type. Valid values are rbac, abac, unknown_authorization. Defaults to rbac.
kubernetes_ca_cert str
TLS certificate (needed if API is using a self-signed TLS certificate).
kubernetes_namespace str
The unique namespace related to the project.
kubernetes_token str
The token to authenticate against Kubernetes.
managed Changes to this property will trigger replacement. bool
Determines if cluster is managed by gitlab or not. Defaults to true. This attribute cannot be read.
management_project_id str
The ID of the management project for the cluster.
name str
The name of cluster.
platform_type str
Platform type.
project Changes to this property will trigger replacement. str
The id of the project to add the cluster to.
provider_type str
Provider type.
clusterType String
Cluster type.
createdAt String
Create time.
domain String
The base domain of the cluster.
enabled Changes to this property will trigger replacement. Boolean
Determines if cluster is active or not. Defaults to true. This attribute cannot be read.
environmentScope String
The associated environment to the cluster. Defaults to *.
kubernetesApiUrl String
The URL to access the Kubernetes API.
kubernetesAuthorizationType Changes to this property will trigger replacement. String
The cluster authorization type. Valid values are rbac, abac, unknown_authorization. Defaults to rbac.
kubernetesCaCert String
TLS certificate (needed if API is using a self-signed TLS certificate).
kubernetesNamespace String
The unique namespace related to the project.
kubernetesToken String
The token to authenticate against Kubernetes.
managed Changes to this property will trigger replacement. Boolean
Determines if cluster is managed by gitlab or not. Defaults to true. This attribute cannot be read.
managementProjectId String
The ID of the management project for the cluster.
name String
The name of cluster.
platformType String
Platform type.
project Changes to this property will trigger replacement. String
The id of the project to add the cluster to.
providerType String
Provider type.

Import

Starting in Terraform v1.5.0 you can use an import block to import gitlab_project_cluster. For example:

terraform

import {

to = gitlab_project_cluster.example

id = “see CLI command below for ID”

}

Import using the CLI is supported using the following syntax:

GitLab project clusters can be imported using an id made up of projectid:clusterid, e.g.

$ pulumi import gitlab:index/projectCluster:ProjectCluster bar 123:321
Copy

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

Package Details

Repository
GitLab pulumi/pulumi-gitlab
License
Apache-2.0
Notes
This Pulumi package is based on the gitlab Terraform Provider.