File tree Expand file tree Collapse file tree 2 files changed +16
-8
lines changed Expand file tree Collapse file tree 2 files changed +16
-8
lines changed Original file line number Diff line number Diff line change 3
3
page_title : " gitlab_user Resource - terraform-provider-gitlab"
4
4
subcategory : " "
5
5
description : |-
6
- This resource allows you to create and manage GitLab users .
7
- Note your provider will need to be configured with admin-level access for this resource to work.
6
+ The gitlab_user resource allows to manage the lifecycle of a user .
7
+ -> the provider needs to be configured with admin-level access for this resource to work.
8
8
-> You must specify either password or reset_password.
9
+ Upstream API: GitLab REST API docs https://docs.gitlab.com/ee/api/users.html
9
10
---
10
11
11
12
# gitlab_user (Resource)
12
13
13
- This resource allows you to create and manage GitLab users.
14
- Note your provider will need to be configured with admin-level access for this resource to work.
14
+ The ` gitlab_user ` resource allows to manage the lifecycle of a user.
15
15
16
- -> You must specify either ` password ` or ` reset_password ` .
16
+ -> the provider needs to be configured with admin-level access for this resource to work.
17
+
18
+ -> You must specify either password or reset_password.
19
+
20
+ ** Upstream API** : [ GitLab REST API docs] ( https://docs.gitlab.com/ee/api/users.html )
17
21
18
22
## Example Usage
19
23
Original file line number Diff line number Diff line change @@ -22,9 +22,13 @@ var validUserStateValues = []string{
22
22
23
23
var _ = registerResource ("gitlab_user" , func () * schema.Resource {
24
24
return & schema.Resource {
25
- Description : "This resource allows you to create and manage GitLab users.\n " +
26
- "Note your provider will need to be configured with admin-level access for this resource to work.\n \n " +
27
- "-> You must specify either `password` or `reset_password`." ,
25
+ Description : `The ` + "`gitlab_user`" + ` resource allows to manage the lifecycle of a user.
26
+
27
+ -> the provider needs to be configured with admin-level access for this resource to work.
28
+
29
+ -> You must specify either password or reset_password.
30
+
31
+ **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/ee/api/users.html)` ,
28
32
29
33
CreateContext : resourceGitlabUserCreate ,
30
34
ReadContext : resourceGitlabUserRead ,
You can’t perform that action at this time.
0 commit comments