datadog_team_link (Resource)

Provides a Datadog TeamLink resource. This can be used to create and manage Datadog team_link.

Example Usage

resource "datadog_team" "foo" {
  description = "Example team"
  handle      = "example-team-updated"
  name        = "Example Team-updated"
}

# Create new team_link resource

resource "datadog_team_link" "foo" {
  team_id  = datadog_team.foo.id
  label    = "Link label"
  position = "Example link"
  url      = "https://example.com"
}

Schema

Required

Optional

Read-Only

Import

Import is supported using the following syntax:

terraform import datadog_team_link.new_list "${team_id}:${resource_id}"