published on Saturday, Sep 19, 2026 by Pulumi
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:
- 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 boolEvents - When enabled, job logs are collected by Datadog and displayed along with pipeline execution traces. Requires
datadogCiVisibilityto be enabled. - 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.
- 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 boolEvents - When enabled, job logs are collected by Datadog and displayed along with pipeline execution traces. Requires
datadogCiVisibilityto be enabled. - 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.
- 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_ boolevents - When enabled, job logs are collected by Datadog and displayed along with pipeline execution traces. Requires
datadogCiVisibilityto be enabled. - 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.
- 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 BooleanEvents - When enabled, job logs are collected by Datadog and displayed along with pipeline execution traces. Requires
datadogCiVisibilityto be enabled. - 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.
- 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 booleanEvents - When enabled, job logs are collected by Datadog and displayed along with pipeline execution traces. Requires
datadogCiVisibilityto be enabled. - 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.
- 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_ boolevents - When enabled, job logs are collected by Datadog and displayed along with pipeline execution traces. Requires
datadogCiVisibilityto be enabled. - 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.
- 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 BooleanEvents - When enabled, job logs are collected by Datadog and displayed along with pipeline execution traces. Requires
datadogCiVisibilityto be enabled. - 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 GroupIntegrationDatadog resource produces the following output properties:
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) -> GroupIntegrationDatadogfunc 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.
- 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. Requires
datadogCiVisibilityto be enabled. - 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. - Group string
- The ID or full path of the group to integrate with Datadog.
- 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. Requires
datadogCiVisibilityto be enabled. - 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. - Group string
- The ID or full path of the group to integrate with Datadog.
- 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. Requires
datadogCiVisibilityto be enabled. - 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. - group string
- The ID or full path of the group to integrate with Datadog.
- 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. Requires
datadogCiVisibilityto be enabled. - 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. - group String
- The ID or full path of the group to integrate with Datadog.
- 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. Requires
datadogCiVisibilityto be enabled. - 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. - group string
- The ID or full path of the group to integrate with Datadog.
- 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. Requires
datadogCiVisibilityto be enabled. - 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. - group str
- The ID or full path of the group to integrate with Datadog.
- 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. Requires
datadogCiVisibilityto be enabled. - 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. - group String
- The ID or full path of the group to integrate with Datadog.
- 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.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
gitlabTerraform Provider.
published on Saturday, Sep 19, 2026 by Pulumi