published on Friday, Jun 26, 2026 by Pulumi
published on Friday, Jun 26, 2026 by Pulumi
The gitlab.ProjectIntegrationDatadog resource manages the lifecycle of a project integration with Datadog.
Upstream API: GitLab REST API docs
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as gitlab from "@pulumi/gitlab";
const example = new gitlab.Project("example", {
name: "example",
visibilityLevel: "public",
});
const exampleProjectIntegrationDatadog = new gitlab.ProjectIntegrationDatadog("example", {
project: example.id,
apiKey: "secret-datadog-api-key",
datadogSite: "datadoghq.com",
datadogEnv: "production",
});
import pulumi
import pulumi_gitlab as gitlab
example = gitlab.Project("example",
name="example",
visibility_level="public")
example_project_integration_datadog = gitlab.ProjectIntegrationDatadog("example",
project=example.id,
api_key="secret-datadog-api-key",
datadog_site="datadoghq.com",
datadog_env="production")
package main
import (
"github.com/pulumi/pulumi-gitlab/sdk/v10/go/gitlab"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := gitlab.NewProject(ctx, "example", &gitlab.ProjectArgs{
Name: pulumi.String("example"),
VisibilityLevel: pulumi.String("public"),
})
if err != nil {
return err
}
_, err = gitlab.NewProjectIntegrationDatadog(ctx, "example", &gitlab.ProjectIntegrationDatadogArgs{
Project: example.ID(),
ApiKey: pulumi.String("secret-datadog-api-key"),
DatadogSite: pulumi.String("datadoghq.com"),
DatadogEnv: pulumi.String("production"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using GitLab = Pulumi.GitLab;
return await Deployment.RunAsync(() =>
{
var example = new GitLab.Project("example", new()
{
Name = "example",
VisibilityLevel = "public",
});
var exampleProjectIntegrationDatadog = new GitLab.ProjectIntegrationDatadog("example", new()
{
Project = example.Id,
ApiKey = "secret-datadog-api-key",
DatadogSite = "datadoghq.com",
DatadogEnv = "production",
});
});
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.ProjectIntegrationDatadog;
import com.pulumi.gitlab.ProjectIntegrationDatadogArgs;
import java.util.ArrayList;
import java.util.Arrays;
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 example = new Project("example", ProjectArgs.builder()
.name("example")
.visibilityLevel("public")
.build());
var exampleProjectIntegrationDatadog = new ProjectIntegrationDatadog("exampleProjectIntegrationDatadog", ProjectIntegrationDatadogArgs.builder()
.project(example.id())
.apiKey("secret-datadog-api-key")
.datadogSite("datadoghq.com")
.datadogEnv("production")
.build());
}
}
resources:
example:
type: gitlab:Project
properties:
name: example
visibilityLevel: public
exampleProjectIntegrationDatadog:
type: gitlab:ProjectIntegrationDatadog
name: example
properties:
project: ${example.id}
apiKey: secret-datadog-api-key
datadogSite: datadoghq.com
datadogEnv: production
pulumi {
required_providers {
gitlab = {
source = "pulumi/gitlab"
}
}
}
resource "gitlab_project" "example" {
name = "example"
visibility_level = "public"
}
resource "gitlab_projectintegrationdatadog" "example" {
project = gitlab_project.example.id
api_key = "secret-datadog-api-key"
datadog_site = "datadoghq.com"
datadog_env = "production"
}
Create ProjectIntegrationDatadog Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ProjectIntegrationDatadog(name: string, args: ProjectIntegrationDatadogArgs, opts?: CustomResourceOptions);@overload
def ProjectIntegrationDatadog(resource_name: str,
args: ProjectIntegrationDatadogArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ProjectIntegrationDatadog(resource_name: str,
opts: Optional[ResourceOptions] = None,
api_key: Optional[str] = None,
project: Optional[str] = None,
api_url: Optional[str] = None,
archive_trace_events: Optional[bool] = None,
datadog_ci_visibility: Optional[bool] = None,
datadog_env: Optional[str] = None,
datadog_service: Optional[str] = None,
datadog_site: Optional[str] = None,
datadog_tags: Optional[str] = None,
use_inherited_settings: Optional[bool] = None)func NewProjectIntegrationDatadog(ctx *Context, name string, args ProjectIntegrationDatadogArgs, opts ...ResourceOption) (*ProjectIntegrationDatadog, error)public ProjectIntegrationDatadog(string name, ProjectIntegrationDatadogArgs args, CustomResourceOptions? opts = null)
public ProjectIntegrationDatadog(String name, ProjectIntegrationDatadogArgs args)
public ProjectIntegrationDatadog(String name, ProjectIntegrationDatadogArgs args, CustomResourceOptions options)
type: gitlab:ProjectIntegrationDatadog
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "gitlab_projectintegrationdatadog" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args ProjectIntegrationDatadogArgs
- 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 ProjectIntegrationDatadogArgs
- 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 ProjectIntegrationDatadogArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ProjectIntegrationDatadogArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ProjectIntegrationDatadogArgs
- 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 projectIntegrationDatadogResource = new GitLab.ProjectIntegrationDatadog("projectIntegrationDatadogResource", new()
{
ApiKey = "string",
Project = "string",
ApiUrl = "string",
ArchiveTraceEvents = false,
DatadogCiVisibility = false,
DatadogEnv = "string",
DatadogService = "string",
DatadogSite = "string",
DatadogTags = "string",
UseInheritedSettings = false,
});
example, err := gitlab.NewProjectIntegrationDatadog(ctx, "projectIntegrationDatadogResource", &gitlab.ProjectIntegrationDatadogArgs{
ApiKey: pulumi.String("string"),
Project: pulumi.String("string"),
ApiUrl: pulumi.String("string"),
ArchiveTraceEvents: pulumi.Bool(false),
DatadogCiVisibility: pulumi.Bool(false),
DatadogEnv: pulumi.String("string"),
DatadogService: pulumi.String("string"),
DatadogSite: pulumi.String("string"),
DatadogTags: pulumi.String("string"),
UseInheritedSettings: pulumi.Bool(false),
})
resource "gitlab_projectintegrationdatadog" "projectIntegrationDatadogResource" {
api_key = "string"
project = "string"
api_url = "string"
archive_trace_events = false
datadog_ci_visibility = false
datadog_env = "string"
datadog_service = "string"
datadog_site = "string"
datadog_tags = "string"
use_inherited_settings = false
}
var projectIntegrationDatadogResource = new ProjectIntegrationDatadog("projectIntegrationDatadogResource", ProjectIntegrationDatadogArgs.builder()
.apiKey("string")
.project("string")
.apiUrl("string")
.archiveTraceEvents(false)
.datadogCiVisibility(false)
.datadogEnv("string")
.datadogService("string")
.datadogSite("string")
.datadogTags("string")
.useInheritedSettings(false)
.build());
project_integration_datadog_resource = gitlab.ProjectIntegrationDatadog("projectIntegrationDatadogResource",
api_key="string",
project="string",
api_url="string",
archive_trace_events=False,
datadog_ci_visibility=False,
datadog_env="string",
datadog_service="string",
datadog_site="string",
datadog_tags="string",
use_inherited_settings=False)
const projectIntegrationDatadogResource = new gitlab.ProjectIntegrationDatadog("projectIntegrationDatadogResource", {
apiKey: "string",
project: "string",
apiUrl: "string",
archiveTraceEvents: false,
datadogCiVisibility: false,
datadogEnv: "string",
datadogService: "string",
datadogSite: "string",
datadogTags: "string",
useInheritedSettings: false,
});
type: gitlab:ProjectIntegrationDatadog
properties:
apiKey: string
apiUrl: string
archiveTraceEvents: false
datadogCiVisibility: false
datadogEnv: string
datadogService: string
datadogSite: string
datadogTags: string
project: string
useInheritedSettings: false
ProjectIntegrationDatadog 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 ProjectIntegrationDatadog resource accepts the following input properties:
- Api
Key string - API key used for authentication with Datadog.
- Project string
- ID of the project you want to activate integration on.
- Api
Url string - Full URL of your Datadog site.
- Archive
Trace boolEvents - When enabled, job logs are collected by Datadog and displayed along with pipeline execution traces.
- Datadog
Ci boolVisibility - Enables collection of pipeline and job events in Datadog to display pipeline execution traces.
- Datadog
Env string - For self-managed deployments,
env%tag for all the data sent to Datadog. - Datadog
Service string - GitLab instance to tag all data from in Datadog. Can be used when managing several self-managed deployments.
- Datadog
Site string - Datadog site to send data to. To send data to the EU site, use
datadoghq.eu. - string
- Custom tags in Datadog. Specify one tag per line in the format
key:value\nkey2:value2. - Use
Inherited boolSettings - Indicates whether to inherit the default settings. Defaults to
false.
- Api
Key string - API key used for authentication with Datadog.
- Project string
- ID of the project you want to activate integration on.
- Api
Url string - Full URL of your Datadog site.
- Archive
Trace boolEvents - When enabled, job logs are collected by Datadog and displayed along with pipeline execution traces.
- Datadog
Ci boolVisibility - Enables collection of pipeline and job events in Datadog to display pipeline execution traces.
- Datadog
Env string - For self-managed deployments,
env%tag for all the data sent to Datadog. - Datadog
Service string - GitLab instance to tag all data from in Datadog. Can be used when managing several self-managed deployments.
- Datadog
Site string - Datadog site to send data to. To send data to the EU site, use
datadoghq.eu. - string
- Custom tags in Datadog. Specify one tag per line in the format
key:value\nkey2:value2. - Use
Inherited boolSettings - Indicates whether to inherit the default settings. Defaults to
false.
- api_
key string - API key used for authentication with Datadog.
- project string
- ID of the project you want to activate integration on.
- api_
url string - Full URL of your Datadog site.
- archive_
trace_ boolevents - When enabled, job logs are collected by Datadog and displayed along with pipeline execution traces.
- datadog_
ci_ boolvisibility - Enables collection of pipeline and job events in Datadog to display pipeline execution traces.
- datadog_
env string - For self-managed deployments,
env%tag for all the data sent to Datadog. - datadog_
service string - GitLab instance to tag all data from in Datadog. Can be used when managing several self-managed deployments.
- datadog_
site string - Datadog site to send data to. To send data to the EU site, use
datadoghq.eu. - string
- Custom tags in Datadog. Specify one tag per line in the format
key:value\nkey2:value2. - use_
inherited_ boolsettings - Indicates whether to inherit the default settings. Defaults to
false.
- api
Key String - API key used for authentication with Datadog.
- project String
- ID of the project you want to activate integration on.
- api
Url String - Full URL of your Datadog site.
- archive
Trace BooleanEvents - When enabled, job logs are collected by Datadog and displayed along with pipeline execution traces.
- datadog
Ci BooleanVisibility - Enables collection of pipeline and job events in Datadog to display pipeline execution traces.
- datadog
Env String - For self-managed deployments,
env%tag for all the data sent to Datadog. - datadog
Service String - GitLab instance to tag all data from in Datadog. Can be used when managing several self-managed deployments.
- datadog
Site String - Datadog site to send data to. To send data to the EU site, use
datadoghq.eu. - String
- Custom tags in Datadog. Specify one tag per line in the format
key:value\nkey2:value2. - use
Inherited BooleanSettings - Indicates whether to inherit the default settings. Defaults to
false.
- api
Key string - API key used for authentication with Datadog.
- project string
- ID of the project you want to activate integration on.
- api
Url string - Full URL of your Datadog site.
- archive
Trace booleanEvents - When enabled, job logs are collected by Datadog and displayed along with pipeline execution traces.
- datadog
Ci booleanVisibility - Enables collection of pipeline and job events in Datadog to display pipeline execution traces.
- datadog
Env string - For self-managed deployments,
env%tag for all the data sent to Datadog. - datadog
Service string - GitLab instance to tag all data from in Datadog. Can be used when managing several self-managed deployments.
- datadog
Site string - Datadog site to send data to. To send data to the EU site, use
datadoghq.eu. - string
- Custom tags in Datadog. Specify one tag per line in the format
key:value\nkey2:value2. - use
Inherited booleanSettings - Indicates whether to inherit the default settings. Defaults to
false.
- api_
key str - API key used for authentication with Datadog.
- project str
- ID of the project you want to activate integration on.
- api_
url str - Full URL of your Datadog site.
- archive_
trace_ boolevents - When enabled, job logs are collected by Datadog and displayed along with pipeline execution traces.
- datadog_
ci_ boolvisibility - Enables collection of pipeline and job events in Datadog to display pipeline execution traces.
- datadog_
env str - For self-managed deployments,
env%tag for all the data sent to Datadog. - datadog_
service str - GitLab instance to tag all data from in Datadog. Can be used when managing several self-managed deployments.
- datadog_
site str - Datadog site to send data to. To send data to the EU site, use
datadoghq.eu. - str
- Custom tags in Datadog. Specify one tag per line in the format
key:value\nkey2:value2. - use_
inherited_ boolsettings - Indicates whether to inherit the default settings. Defaults to
false.
- api
Key String - API key used for authentication with Datadog.
- project String
- ID of the project you want to activate integration on.
- api
Url String - Full URL of your Datadog site.
- archive
Trace BooleanEvents - When enabled, job logs are collected by Datadog and displayed along with pipeline execution traces.
- datadog
Ci BooleanVisibility - Enables collection of pipeline and job events in Datadog to display pipeline execution traces.
- datadog
Env String - For self-managed deployments,
env%tag for all the data sent to Datadog. - datadog
Service String - GitLab instance to tag all data from in Datadog. Can be used when managing several self-managed deployments.
- datadog
Site String - Datadog site to send data to. To send data to the EU site, use
datadoghq.eu. - String
- Custom tags in Datadog. Specify one tag per line in the format
key:value\nkey2:value2. - use
Inherited BooleanSettings - Indicates whether to inherit the default settings. Defaults to
false.
Outputs
All input properties are implicitly available as output properties. Additionally, the ProjectIntegrationDatadog resource produces the following output properties:
Look up Existing ProjectIntegrationDatadog Resource
Get an existing ProjectIntegrationDatadog 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?: ProjectIntegrationDatadogState, opts?: CustomResourceOptions): ProjectIntegrationDatadog@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
active: Optional[bool] = None,
api_key: Optional[str] = None,
api_url: Optional[str] = None,
archive_trace_events: Optional[bool] = None,
datadog_ci_visibility: Optional[bool] = None,
datadog_env: Optional[str] = None,
datadog_service: Optional[str] = None,
datadog_site: Optional[str] = None,
datadog_tags: Optional[str] = None,
project: Optional[str] = None,
use_inherited_settings: Optional[bool] = None) -> ProjectIntegrationDatadogfunc GetProjectIntegrationDatadog(ctx *Context, name string, id IDInput, state *ProjectIntegrationDatadogState, opts ...ResourceOption) (*ProjectIntegrationDatadog, error)public static ProjectIntegrationDatadog Get(string name, Input<string> id, ProjectIntegrationDatadogState? state, CustomResourceOptions? opts = null)public static ProjectIntegrationDatadog get(String name, Output<String> id, ProjectIntegrationDatadogState state, CustomResourceOptions options)resources: _: type: gitlab:ProjectIntegrationDatadog get: id: ${id}import {
to = gitlab_projectintegrationdatadog.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Active bool
- Whether the integration is active.
- Api
Key string - API key used for authentication with Datadog.
- Api
Url string - Full URL of your Datadog site.
- Archive
Trace boolEvents - When enabled, job logs are collected by Datadog and displayed along with pipeline execution traces.
- Datadog
Ci boolVisibility - Enables collection of pipeline and job events in Datadog to display pipeline execution traces.
- Datadog
Env string - For self-managed deployments,
env%tag for all the data sent to Datadog. - Datadog
Service string - GitLab instance to tag all data from in Datadog. Can be used when managing several self-managed deployments.
- Datadog
Site string - Datadog site to send data to. To send data to the EU site, use
datadoghq.eu. - string
- Custom tags in Datadog. Specify one tag per line in the format
key:value\nkey2:value2. - Project string
- ID of the project you want to activate integration on.
- Use
Inherited boolSettings - Indicates whether to inherit the default settings. Defaults to
false.
- Active bool
- Whether the integration is active.
- Api
Key string - API key used for authentication with Datadog.
- Api
Url string - Full URL of your Datadog site.
- Archive
Trace boolEvents - When enabled, job logs are collected by Datadog and displayed along with pipeline execution traces.
- Datadog
Ci boolVisibility - Enables collection of pipeline and job events in Datadog to display pipeline execution traces.
- Datadog
Env string - For self-managed deployments,
env%tag for all the data sent to Datadog. - Datadog
Service string - GitLab instance to tag all data from in Datadog. Can be used when managing several self-managed deployments.
- Datadog
Site string - Datadog site to send data to. To send data to the EU site, use
datadoghq.eu. - string
- Custom tags in Datadog. Specify one tag per line in the format
key:value\nkey2:value2. - Project string
- ID of the project you want to activate integration on.
- Use
Inherited boolSettings - Indicates whether to inherit the default settings. Defaults to
false.
- active bool
- Whether the integration is active.
- api_
key string - API key used for authentication with Datadog.
- api_
url string - Full URL of your Datadog site.
- archive_
trace_ boolevents - When enabled, job logs are collected by Datadog and displayed along with pipeline execution traces.
- datadog_
ci_ boolvisibility - Enables collection of pipeline and job events in Datadog to display pipeline execution traces.
- datadog_
env string - For self-managed deployments,
env%tag for all the data sent to Datadog. - datadog_
service string - GitLab instance to tag all data from in Datadog. Can be used when managing several self-managed deployments.
- datadog_
site string - Datadog site to send data to. To send data to the EU site, use
datadoghq.eu. - string
- Custom tags in Datadog. Specify one tag per line in the format
key:value\nkey2:value2. - project string
- ID of the project you want to activate integration on.
- use_
inherited_ boolsettings - Indicates whether to inherit the default settings. Defaults to
false.
- active Boolean
- Whether the integration is active.
- api
Key String - API key used for authentication with Datadog.
- api
Url String - Full URL of your Datadog site.
- archive
Trace BooleanEvents - When enabled, job logs are collected by Datadog and displayed along with pipeline execution traces.
- datadog
Ci BooleanVisibility - Enables collection of pipeline and job events in Datadog to display pipeline execution traces.
- datadog
Env String - For self-managed deployments,
env%tag for all the data sent to Datadog. - datadog
Service String - GitLab instance to tag all data from in Datadog. Can be used when managing several self-managed deployments.
- datadog
Site String - Datadog site to send data to. To send data to the EU site, use
datadoghq.eu. - String
- Custom tags in Datadog. Specify one tag per line in the format
key:value\nkey2:value2. - project String
- ID of the project you want to activate integration on.
- use
Inherited BooleanSettings - Indicates whether to inherit the default settings. Defaults to
false.
- active boolean
- Whether the integration is active.
- api
Key string - API key used for authentication with Datadog.
- api
Url string - Full URL of your Datadog site.
- archive
Trace booleanEvents - When enabled, job logs are collected by Datadog and displayed along with pipeline execution traces.
- datadog
Ci booleanVisibility - Enables collection of pipeline and job events in Datadog to display pipeline execution traces.
- datadog
Env string - For self-managed deployments,
env%tag for all the data sent to Datadog. - datadog
Service string - GitLab instance to tag all data from in Datadog. Can be used when managing several self-managed deployments.
- datadog
Site string - Datadog site to send data to. To send data to the EU site, use
datadoghq.eu. - string
- Custom tags in Datadog. Specify one tag per line in the format
key:value\nkey2:value2. - project string
- ID of the project you want to activate integration on.
- use
Inherited booleanSettings - Indicates whether to inherit the default settings. Defaults to
false.
- active bool
- Whether the integration is active.
- api_
key str - API key used for authentication with Datadog.
- api_
url str - Full URL of your Datadog site.
- archive_
trace_ boolevents - When enabled, job logs are collected by Datadog and displayed along with pipeline execution traces.
- datadog_
ci_ boolvisibility - Enables collection of pipeline and job events in Datadog to display pipeline execution traces.
- datadog_
env str - For self-managed deployments,
env%tag for all the data sent to Datadog. - datadog_
service str - GitLab instance to tag all data from in Datadog. Can be used when managing several self-managed deployments.
- datadog_
site str - Datadog site to send data to. To send data to the EU site, use
datadoghq.eu. - str
- Custom tags in Datadog. Specify one tag per line in the format
key:value\nkey2:value2. - project str
- ID of the project you want to activate integration on.
- use_
inherited_ boolsettings - Indicates whether to inherit the default settings. Defaults to
false.
- active Boolean
- Whether the integration is active.
- api
Key String - API key used for authentication with Datadog.
- api
Url String - Full URL of your Datadog site.
- archive
Trace BooleanEvents - When enabled, job logs are collected by Datadog and displayed along with pipeline execution traces.
- datadog
Ci BooleanVisibility - Enables collection of pipeline and job events in Datadog to display pipeline execution traces.
- datadog
Env String - For self-managed deployments,
env%tag for all the data sent to Datadog. - datadog
Service String - GitLab instance to tag all data from in Datadog. Can be used when managing several self-managed deployments.
- datadog
Site String - Datadog site to send data to. To send data to the EU site, use
datadoghq.eu. - String
- Custom tags in Datadog. Specify one tag per line in the format
key:value\nkey2:value2. - project String
- ID of the project you want to activate integration on.
- use
Inherited BooleanSettings - Indicates whether to inherit the default settings. Defaults to
false.
Import
Starting in Terraform v1.5.0, you can use an import block to import gitlab.ProjectIntegrationDatadog. For example:
Importing using the CLI is supported with the following syntax:
You can import a gitlab.ProjectIntegrationDatadog state using terraform import <resource> <project_id>:
$ pulumi import gitlab:index/projectIntegrationDatadog:ProjectIntegrationDatadog example 1
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
gitlabTerraform Provider.
published on Friday, Jun 26, 2026 by Pulumi