Skip to content

Support DataDog Integration Resource

Everyone can contribute. Help move this issue forward while earning points, leveling up and collecting rewards.

New Resource

The company I represent has a need to be able to provision DataDog integrations via the Terraform provider so that we can automate onboarding new groups with their own unique DataDog instances within our managed GitLab instance.

I'm looking for something that I could use like this:

resource "gitlab_integration_datadog" "metrics" {
    project              = "12345"
    api_key              = "abcd1234"
    api_url              = "https://datadoghq.com"
    archive_trace_events = true
    datadog_env          = "production"
    datadog_service      = "gitlab"
    datadog_site         = "datadoghq.com"
    datadog_tags = {
        country  = "canada"
        province = "ontario"
    }
}

Related GitLab APIs

API documentation: https://docs.gitlab.com/ee/api/integrations.html#datadog

Additional Details

Edited by 🤖 GitLab Bot 🤖