forked from CognotektGmbH/terraform-provider-jumpcloud
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from cheelim1/feat/add-user-displayname
Add display name for jumpcloud user
- Loading branch information
Showing
2 changed files
with
17 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 |
---|---|---|
|
@@ -14,11 +14,12 @@ Provides a JumpCloud system user resource. For additional information refer also | |
|
||
```terraform | ||
resource "jumpcloud_user" "john_doe" { | ||
username = "john.doe" | ||
email = "[email protected]" | ||
firstname = "John Smith" | ||
lastname = "Doe" | ||
enable_mfa = true | ||
username = "john.doe" | ||
email = "[email protected]" | ||
firstname = "John" | ||
lastname = "Doe" | ||
display_name = "John Doe" | ||
enable_mfa = true | ||
} | ||
output "userid" { | ||
|
@@ -39,6 +40,7 @@ output "userid" { | |
- `enable_mfa` (Boolean) Require Multi-factor Authentication on the User Portal. | ||
- `firstname` (String) The user's first name. Example: `john`. | ||
- `lastname` (String) The user's last name. Example: `doe`. | ||
- `display_name` (String) The user's display name. Example: `john doe`. | ||
- `ldap_binding_user` (Boolean) | ||
- `password` (String) | ||
- `password_never_expires` (Boolean) | ||
|
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