conveyor_user (Resource)
The user object allows you to invite users via terraform.
Example Usage
resource "conveyor_user" "a_user" {
  email = "EMAIL_ADDRESS"
}
Schema
Required
- email(String) The email address of the user.
Optional
- skip_invitation_email(Boolean) Skip sending an invitation email to the user, defaults to false. Only has an effect when user resources is created.
Read-Only
- id(String) The unique ID of the user.
Import
Import is supported using the following syntax:
terraform import conveyor_user.a_user "EMAIL_ADDRESS"