On this page
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 = "new@example.com"
handle = "new@example.com"
name = "New User"
}
Argument Reference
The following arguments are supported:
disabled
- (Optional) Whether the user is disabledemail
- (Required) Email address for userhandle
- (Required) The user handle, must be a valid email.is_admin
- (Optional) Whether the user is an administratorname
- (Required) Name for userrole
- (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 userverified
- Returns true if Datadog user is verified
Import
users can be imported using their handle, e.g.
$ terraform import datadog_user.example_user existing@example.com
© 2018 HashiCorp
Licensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/datadog/r/user.html