Provides a Datadog TeamPermissionSetting resource. This can be used to manage Datadog team_permission_setting.
resource "datadog_team" "foo" {
description = "Example team"
handle = "example-team-updated"
name = "Example Team-updated"
}
resource "datadog_team_permission_setting" "foo" {
team_id = datadog_team.foo.id
action = "manage_membership"
value = "organization"
}
action
(String) The identifier for the action. Valid values are manage_membership
, edit
.team_id
(String) ID of the team the team permission setting is associated with.value
(String) The action value. Valid values are admins
, members
, organization
, user_access_manage
, teams_manage
.id
(String) The ID of this resource.