Skip to content

Commit 7ea6a9d

Browse files
committed
docs: Add sysdig_user documentation
Signed-off-by: Federico Barcelona <[email protected]>
1 parent b70e1ac commit 7ea6a9d

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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.

0 commit comments

Comments
 (0)