Provides a Datadog TeamLink resource. This can be used to create and manage Datadog team_link.
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"
}
label
(String) The link's label.team_id
(String) ID of the team the link is associated with.url
(String) The URL for the link.position
(Number) The link's position, used to sort links for the team.id
(String) The ID of this resource.Import is supported using the following syntax:
terraform import datadog_team_link.new_list "${team_id}:${resource_id}"