File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ layout : " sysdig"
3+ page_title : " Sysdig: sysdig_user"
4+ sidebar_current : " docs-sysdig-user"
5+ description : |-
6+ Creates a user in Sysdig.
7+ ---
8+
9+ # sysdig\_ user
10+
11+ Creates a user in Sysdig.
12+
13+ ~ > ** Note:** This resource is still experimental, and is subject of being changed.
14+
15+ ## Example usage
16+
17+ ``` hcl
18+ resource "sysdig_user" "foo-bar" {
19+ 20+ system_role = "ROLE_CUSTOMER"
21+ first_name = "foo"
22+ last_name = "bar"
23+ }
24+ ```
25+
26+ ## Argument Reference
27+
28+ * ` email ` - (Required) The email for the user to invite.
29+
30+ * ` system_role ` - (Optional) The privileges for the user. It can be either "ROLE_USER" or "ROLE_CUSTOMER".
31+ If set to "ROLE_CUSTOMER", the user will be known as an admin.
32+
33+ * ` first_name ` - (Optional) The name of the user.
34+
35+ * ` last_name ` - (Optional) The last name of the user.
You can’t perform that action at this time.
0 commit comments