1. Registry
  2. Packages
  3. Gitlab Provider
  4. API Docs
  5. GroupIntegrationDatadog
Viewing docs for GitLab v10.3.0
published on Saturday, Sep 19, 2026 by Pulumi
gitlab logo
Viewing docs for GitLab v10.3.0
published on Saturday, Sep 19, 2026 by Pulumi

    The gitlab.GroupIntegrationDatadog resource manages the lifecycle of a group 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.GroupIntegrationDatadog("example", {
        group: "my-group",
        apiKey: "secret-datadog-api-key",
        datadogSite: "datadoghq.com",
        datadogEnv: "production",
    });
    
    import pulumi
    import pulumi_gitlab as gitlab
    
    example = gitlab.GroupIntegrationDatadog("example",
        group="my-group",
        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 {
    		_, err := gitlab.NewGroupIntegrationDatadog(ctx, "example", &gitlab.GroupIntegrationDatadogArgs{
    			Group:       pulumi.String("my-group"),
    			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.GroupIntegrationDatadog("example", new()
        {
            Group = "my-group",
            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.GroupIntegrationDatadog;
    import com.pulumi.gitlab.GroupIntegrationDatadogArgs;
    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 GroupIntegrationDatadog("example", GroupIntegrationDatadogArgs.builder()
                .group("my-group")
                .apiKey("secret-datadog-api-key")
                .datadogSite("datadoghq.com")
                .datadogEnv("production")
                .build());
    
        }
    }
    
    resources:
      example:
        type: gitlab:GroupIntegrationDatadog
        properties:
          group: my-group
          apiKey: secret-datadog-api-key
          datadogSite: datadoghq.com
          datadogEnv: production
    
    pulumi {
      required_providers {
        gitlab = {
          source = "pulumi/gitlab"
        }
      }
    }
    
    resource "gitlab_groupintegrationdatadog" "example" {
      group        = "my-group"
      api_key      = "secret-datadog-api-key"
      datadog_site = "datadoghq.com"
      datadog_env  = "production"
    }
    

    Create GroupIntegrationDatadog Resource

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

    Constructor syntax

    new GroupIntegrationDatadog(name: string, args: GroupIntegrationDatadogArgs, opts?: CustomResourceOptions);
    @overload
    def GroupIntegrationDatadog(resource_name: str,
                                args: GroupIntegrationDatadogArgs,
                                opts: Optional[ResourceOptions] = None)
    
    @overload
    def GroupIntegrationDatadog(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                api_key: Optional[str] = None,
                                group: 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 NewGroupIntegrationDatadog(ctx *Context, name string, args GroupIntegrationDatadogArgs, opts ...ResourceOption) (*GroupIntegrationDatadog, error)
    public GroupIntegrationDatadog(string name, GroupIntegrationDatadogArgs args, CustomResourceOptions? opts = null)
    public GroupIntegrationDatadog(String name, GroupIntegrationDatadogArgs args)
    public GroupIntegrationDatadog(String name, GroupIntegrationDatadogArgs args, CustomResourceOptions options)
    
    type: gitlab:GroupIntegrationDatadog
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "gitlab_group_integration_datadog" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args GroupIntegrationDatadogArgs
    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 GroupIntegrationDatadogArgs
    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 GroupIntegrationDatadogArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GroupIntegrationDatadogArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GroupIntegrationDatadogArgs
    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 groupIntegrationDatadogResource = new GitLab.GroupIntegrationDatadog("groupIntegrationDatadogResource", new()
    {
        ApiKey = "string",
        Group = "string",
        ApiUrl = "string",
        ArchiveTraceEvents = false,
        DatadogCiVisibility = false,
        DatadogEnv = "string",
        DatadogService = "string",
        DatadogSite = "string",
        DatadogTags = "string",
        UseInheritedSettings = false,
    });
    
    example, err := gitlab.NewGroupIntegrationDatadog(ctx, "groupIntegrationDatadogResource", &gitlab.GroupIntegrationDatadogArgs{
    	ApiKey:               pulumi.String("string"),
    	Group:                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_group_integration_datadog" "groupIntegrationDatadogResource" {
      lifecycle {
        create_before_destroy = true
      }
      api_key                = "string"
      group                  = "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 groupIntegrationDatadogResource = new GroupIntegrationDatadog("groupIntegrationDatadogResource", GroupIntegrationDatadogArgs.builder()
        .apiKey("string")
        .group("string")
        .apiUrl("string")
        .archiveTraceEvents(false)
        .datadogCiVisibility(false)
        .datadogEnv("string")
        .datadogService("string")
        .datadogSite("string")
        .datadogTags("string")
        .useInheritedSettings(false)
        .build());
    
    group_integration_datadog_resource = gitlab.GroupIntegrationDatadog("groupIntegrationDatadogResource",
        api_key="string",
        group="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 groupIntegrationDatadogResource = new gitlab.GroupIntegrationDatadog("groupIntegrationDatadogResource", {
        apiKey: "string",
        group: "string",
        apiUrl: "string",
        archiveTraceEvents: false,
        datadogCiVisibility: false,
        datadogEnv: "string",
        datadogService: "string",
        datadogSite: "string",
        datadogTags: "string",
        useInheritedSettings: false,
    });
    
    type: gitlab:GroupIntegrationDatadog
    properties:
        apiKey: string
        apiUrl: string
        archiveTraceEvents: false
        datadogCiVisibility: false
        datadogEnv: string
        datadogService: string
        datadogSite: string
        datadogTags: string
        group: string
        useInheritedSettings: false
    

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

    ApiKey string
    API key used for authentication with Datadog.
    Group string
    The ID or full path of the group to integrate 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. Requires datadogCiVisibility to be enabled.
    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.
    Group string
    The ID or full path of the group to integrate 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. Requires datadogCiVisibility to be enabled.
    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.
    group string
    The ID or full path of the group to integrate 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. Requires datadogCiVisibility to be enabled.
    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.
    group String
    The ID or full path of the group to integrate 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. Requires datadogCiVisibility to be enabled.
    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.
    group string
    The ID or full path of the group to integrate 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. Requires datadogCiVisibility to be enabled.
    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.
    group str
    The ID or full path of the group to integrate 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. Requires datadogCiVisibility to be enabled.
    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.
    group String
    The ID or full path of the group to integrate 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. Requires datadogCiVisibility to be enabled.
    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 GroupIntegrationDatadog 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 GroupIntegrationDatadog Resource

    Get an existing GroupIntegrationDatadog 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?: GroupIntegrationDatadogState, opts?: CustomResourceOptions): GroupIntegrationDatadog
    @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,
            group: Optional[str] = None,
            use_inherited_settings: Optional[bool] = None) -> GroupIntegrationDatadog
    func GetGroupIntegrationDatadog(ctx *Context, name string, id IDInput, state *GroupIntegrationDatadogState, opts ...ResourceOption) (*GroupIntegrationDatadog, error)
    public static GroupIntegrationDatadog Get(string name, Input<string> id, GroupIntegrationDatadogState? state, CustomResourceOptions? opts = null)
    public static GroupIntegrationDatadog get(String name, Output<String> id, GroupIntegrationDatadogState state, CustomResourceOptions options)
    resources:  _:    type: gitlab:GroupIntegrationDatadog    get:      id: ${id}
    import {
      to = gitlab_group_integration_datadog.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. Requires datadogCiVisibility to be enabled.
    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.
    Group string
    The ID or full path of the group to integrate with Datadog.
    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. Requires datadogCiVisibility to be enabled.
    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.
    Group string
    The ID or full path of the group to integrate with Datadog.
    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. Requires datadogCiVisibility to be enabled.
    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.
    group string
    The ID or full path of the group to integrate with Datadog.
    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. Requires datadogCiVisibility to be enabled.
    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.
    group String
    The ID or full path of the group to integrate with Datadog.
    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. Requires datadogCiVisibility to be enabled.
    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.
    group string
    The ID or full path of the group to integrate with Datadog.
    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. Requires datadogCiVisibility to be enabled.
    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.
    group str
    The ID or full path of the group to integrate with Datadog.
    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. Requires datadogCiVisibility to be enabled.
    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.
    group String
    The ID or full path of the group to integrate with Datadog.
    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.GroupIntegrationDatadog. For example:

    Importing using the CLI is supported with the following syntax:

    GitLab group Datadog integrations can be imported using the group ID or full path, e.g.

    $ pulumi import gitlab:index/groupIntegrationDatadog:GroupIntegrationDatadog example 123
    

    or by full path

    $ pulumi import gitlab:index/groupIntegrationDatadog:GroupIntegrationDatadog example "my-group"
    

    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.3.0
    published on Saturday, Sep 19, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial