datadog_user

Provides a Datadog user resource. This can be used to create and manage Datadog users.

Example Usage

# Create a new Datadog user
resource "datadog_user" "foo" {
  email  = "[email protected]"
  handle = "[email protected]"
  name   = "New User"
}

Argument Reference

The following arguments are supported:

  • disabled - (Optional) Whether the user is disabled
  • email - (Required) Email address for user
  • handle - (Required) The user handle, must be a valid email.
  • is_admin - (Optional) Whether the user is an administrator
  • name - (Required) Name for user
  • role - (Optional) Role description for user (NOTE: can only be applied on user creation)

Attributes Reference

The following attributes are exported:

  • disabled - Returns true if Datadog user is disabled (NOTE: Datadog does not actually delete users so this will be true for those as well)
  • id - ID of the Datadog user
  • verified - Returns true if Datadog user is verified

Import

users can be imported using their handle, e.g.

$ terraform import datadog_user.example_user [email protected]

© 2018 HashiCorp
Licensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/datadog/r/user.html