1. Packages
  2. Packages
  3. Gitlab Provider
  4. API Docs
  5. ProjectIntegrationDatadog
Viewing docs for GitLab v10.0.0
published on Friday, Jun 26, 2026 by Pulumi
gitlab logo
Viewing docs for GitLab v10.0.0
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:

    ApiKey string
    API key used for authentication with Datadog.
    Project string
    ID of the project you want to activate integration on.
    ApiUrl string
    Full URL of your Datadog site.
    ArchiveTraceEvents bool
    When enabled, job logs are collected by Datadog and displayed along with pipeline execution traces.
    DatadogCiVisibility bool
    Enables collection of pipeline and job events in Datadog to display pipeline execution traces.
    DatadogEnv string
    For self-managed deployments, env% tag for all the data sent to Datadog.
    DatadogService string
    GitLab instance to tag all data from in Datadog. Can be used when managing several self-managed deployments.
    DatadogSite string
    Datadog site to send data to. To send data to the EU site, use datadoghq.eu.
    DatadogTags string
    Custom tags in Datadog. Specify one tag per line in the format key:value\nkey2:value2.
    UseInheritedSettings bool
    Indicates whether to inherit the default settings. Defaults to false.
    ApiKey string
    API key used for authentication with Datadog.
    Project string
    ID of the project you want to activate integration on.
    ApiUrl string
    Full URL of your Datadog site.
    ArchiveTraceEvents bool
    When enabled, job logs are collected by Datadog and displayed along with pipeline execution traces.
    DatadogCiVisibility bool
    Enables collection of pipeline and job events in Datadog to display pipeline execution traces.
    DatadogEnv string
    For self-managed deployments, env% tag for all the data sent to Datadog.
    DatadogService string
    GitLab instance to tag all data from in Datadog. Can be used when managing several self-managed deployments.
    DatadogSite string
    Datadog site to send data to. To send data to the EU site, use datadoghq.eu.
    DatadogTags string
    Custom tags in Datadog. Specify one tag per line in the format key:value\nkey2:value2.
    UseInheritedSettings bool
    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_events bool
    When enabled, job logs are collected by Datadog and displayed along with pipeline execution traces.
    datadog_ci_visibility bool
    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.
    datadog_tags string
    Custom tags in Datadog. Specify one tag per line in the format key:value\nkey2:value2.
    use_inherited_settings bool
    Indicates whether to inherit the default settings. Defaults to false.
    apiKey String
    API key used for authentication with Datadog.
    project String
    ID of the project you want to activate integration on.
    apiUrl String
    Full URL of your Datadog site.
    archiveTraceEvents Boolean
    When enabled, job logs are collected by Datadog and displayed along with pipeline execution traces.
    datadogCiVisibility Boolean
    Enables collection of pipeline and job events in Datadog to display pipeline execution traces.
    datadogEnv String
    For self-managed deployments, env% tag for all the data sent to Datadog.
    datadogService String
    GitLab instance to tag all data from in Datadog. Can be used when managing several self-managed deployments.
    datadogSite String
    Datadog site to send data to. To send data to the EU site, use datadoghq.eu.
    datadogTags String
    Custom tags in Datadog. Specify one tag per line in the format key:value\nkey2:value2.
    useInheritedSettings Boolean
    Indicates whether to inherit the default settings. Defaults to false.
    apiKey string
    API key used for authentication with Datadog.
    project string
    ID of the project you want to activate integration on.
    apiUrl string
    Full URL of your Datadog site.
    archiveTraceEvents boolean
    When enabled, job logs are collected by Datadog and displayed along with pipeline execution traces.
    datadogCiVisibility boolean
    Enables collection of pipeline and job events in Datadog to display pipeline execution traces.
    datadogEnv string
    For self-managed deployments, env% tag for all the data sent to Datadog.
    datadogService string
    GitLab instance to tag all data from in Datadog. Can be used when managing several self-managed deployments.
    datadogSite string
    Datadog site to send data to. To send data to the EU site, use datadoghq.eu.
    datadogTags string
    Custom tags in Datadog. Specify one tag per line in the format key:value\nkey2:value2.
    useInheritedSettings boolean
    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_events bool
    When enabled, job logs are collected by Datadog and displayed along with pipeline execution traces.
    datadog_ci_visibility bool
    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.
    datadog_tags str
    Custom tags in Datadog. Specify one tag per line in the format key:value\nkey2:value2.
    use_inherited_settings bool
    Indicates whether to inherit the default settings. Defaults to false.
    apiKey String
    API key used for authentication with Datadog.
    project String
    ID of the project you want to activate integration on.
    apiUrl String
    Full URL of your Datadog site.
    archiveTraceEvents Boolean
    When enabled, job logs are collected by Datadog and displayed along with pipeline execution traces.
    datadogCiVisibility Boolean
    Enables collection of pipeline and job events in Datadog to display pipeline execution traces.
    datadogEnv String
    For self-managed deployments, env% tag for all the data sent to Datadog.
    datadogService String
    GitLab instance to tag all data from in Datadog. Can be used when managing several self-managed deployments.
    datadogSite String
    Datadog site to send data to. To send data to the EU site, use datadoghq.eu.
    datadogTags String
    Custom tags in Datadog. Specify one tag per line in the format key:value\nkey2:value2.
    useInheritedSettings Boolean
    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:

    Active bool
    Whether the integration is active.
    Id string
    The provider-assigned unique ID for this managed resource.
    Active bool
    Whether the integration is active.
    Id string
    The provider-assigned unique ID for this managed resource.
    active bool
    Whether the integration is active.
    id string
    The provider-assigned unique ID for this managed resource.
    active Boolean
    Whether the integration is active.
    id String
    The provider-assigned unique ID for this managed resource.
    active boolean
    Whether the integration is active.
    id string
    The provider-assigned unique ID for this managed resource.
    active bool
    Whether the integration is active.
    id str
    The provider-assigned unique ID for this managed resource.
    active Boolean
    Whether the integration is active.
    id String
    The provider-assigned unique ID for this managed resource.

    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) -> ProjectIntegrationDatadog
    func 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.
    The following state arguments are supported:
    Active bool
    Whether the integration is active.
    ApiKey string
    API key used for authentication with Datadog.
    ApiUrl string
    Full URL of your Datadog site.
    ArchiveTraceEvents bool
    When enabled, job logs are collected by Datadog and displayed along with pipeline execution traces.
    DatadogCiVisibility bool
    Enables collection of pipeline and job events in Datadog to display pipeline execution traces.
    DatadogEnv string
    For self-managed deployments, env% tag for all the data sent to Datadog.
    DatadogService string
    GitLab instance to tag all data from in Datadog. Can be used when managing several self-managed deployments.
    DatadogSite string
    Datadog site to send data to. To send data to the EU site, use datadoghq.eu.
    DatadogTags 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.
    UseInheritedSettings bool
    Indicates whether to inherit the default settings. Defaults to false.
    Active bool
    Whether the integration is active.
    ApiKey string
    API key used for authentication with Datadog.
    ApiUrl string
    Full URL of your Datadog site.
    ArchiveTraceEvents bool
    When enabled, job logs are collected by Datadog and displayed along with pipeline execution traces.
    DatadogCiVisibility bool
    Enables collection of pipeline and job events in Datadog to display pipeline execution traces.
    DatadogEnv string
    For self-managed deployments, env% tag for all the data sent to Datadog.
    DatadogService string
    GitLab instance to tag all data from in Datadog. Can be used when managing several self-managed deployments.
    DatadogSite string
    Datadog site to send data to. To send data to the EU site, use datadoghq.eu.
    DatadogTags 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.
    UseInheritedSettings bool
    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_events bool
    When enabled, job logs are collected by Datadog and displayed along with pipeline execution traces.
    datadog_ci_visibility bool
    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.
    datadog_tags 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_settings bool
    Indicates whether to inherit the default settings. Defaults to false.
    active Boolean
    Whether the integration is active.
    apiKey String
    API key used for authentication with Datadog.
    apiUrl String
    Full URL of your Datadog site.
    archiveTraceEvents Boolean
    When enabled, job logs are collected by Datadog and displayed along with pipeline execution traces.
    datadogCiVisibility Boolean
    Enables collection of pipeline and job events in Datadog to display pipeline execution traces.
    datadogEnv String
    For self-managed deployments, env% tag for all the data sent to Datadog.
    datadogService String
    GitLab instance to tag all data from in Datadog. Can be used when managing several self-managed deployments.
    datadogSite String
    Datadog site to send data to. To send data to the EU site, use datadoghq.eu.
    datadogTags 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.
    useInheritedSettings Boolean
    Indicates whether to inherit the default settings. Defaults to false.
    active boolean
    Whether the integration is active.
    apiKey string
    API key used for authentication with Datadog.
    apiUrl string
    Full URL of your Datadog site.
    archiveTraceEvents boolean
    When enabled, job logs are collected by Datadog and displayed along with pipeline execution traces.
    datadogCiVisibility boolean
    Enables collection of pipeline and job events in Datadog to display pipeline execution traces.
    datadogEnv string
    For self-managed deployments, env% tag for all the data sent to Datadog.
    datadogService string
    GitLab instance to tag all data from in Datadog. Can be used when managing several self-managed deployments.
    datadogSite string
    Datadog site to send data to. To send data to the EU site, use datadoghq.eu.
    datadogTags 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.
    useInheritedSettings boolean
    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_events bool
    When enabled, job logs are collected by Datadog and displayed along with pipeline execution traces.
    datadog_ci_visibility bool
    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.
    datadog_tags 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_settings bool
    Indicates whether to inherit the default settings. Defaults to false.
    active Boolean
    Whether the integration is active.
    apiKey String
    API key used for authentication with Datadog.
    apiUrl String
    Full URL of your Datadog site.
    archiveTraceEvents Boolean
    When enabled, job logs are collected by Datadog and displayed along with pipeline execution traces.
    datadogCiVisibility Boolean
    Enables collection of pipeline and job events in Datadog to display pipeline execution traces.
    datadogEnv String
    For self-managed deployments, env% tag for all the data sent to Datadog.
    datadogService String
    GitLab instance to tag all data from in Datadog. Can be used when managing several self-managed deployments.
    datadogSite String
    Datadog site to send data to. To send data to the EU site, use datadoghq.eu.
    datadogTags 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.
    useInheritedSettings Boolean
    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 gitlab Terraform Provider.
    gitlab logo
    Viewing docs for GitLab v10.0.0
    published on Friday, Jun 26, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial