-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Correct documentation -
terraform import rollbar_user.*
is to be do…
…ne by email address, not user ID
- Loading branch information
1 parent
7e0eca5
commit 9ba1320
Showing
1 changed file
with
2 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,6 @@ | |
|
||
Rollbar user resource. | ||
|
||
|
||
Example Usage | ||
------------- | ||
|
||
|
@@ -27,7 +26,6 @@ The following arguments are supported: | |
* `email` - (Required) The user's email address | ||
* `team_ids` - (Required) IDs of the teams to which this user belongs | ||
|
||
|
||
Attribute Reference | ||
------------------- | ||
|
||
|
@@ -37,12 +35,11 @@ In addition to all arguments above, the following attributes are exported: | |
* `user_id` - The ID of the user | ||
* `status` - Status of the user. Either `invited` or `subscribed` | ||
|
||
|
||
Import | ||
------ | ||
|
||
Users can be imported using the user ID, e.g. | ||
Users can be imported using their user email address, e.g. | ||
|
||
``` | ||
$ terraform import rollbar_user.foo 238101 | ||
$ terraform import rollbar_user.some_dev [email protected] | ||
``` |