File tree Expand file tree Collapse file tree 2 files changed +11
-9
lines changed Expand file tree Collapse file tree 2 files changed +11
-9
lines changed Original file line number Diff line number Diff line change 3
3
page_title : " gitlab_group Resource - terraform-provider-gitlab"
4
4
subcategory : " "
5
5
description : |-
6
- This resource allows you to create and manage GitLab groups .
7
- Note your provider will need to be configured with admin-level access for this resource to work .
8
- Upstream API: GitLab Groups API https://docs.gitlab.com/ee/api/groups.html
6
+ The gitlab_group resource allows to manage the lifecycle of a group .
7
+ -> On GitLab SaaS, you must use the GitLab UI to create groups without a parent group. You cannot use this provider nor the API to do this .
8
+ Upstream API: GitLab REST API docs https://docs.gitlab.com/ee/api/groups.html
9
9
---
10
10
11
11
# gitlab_group (Resource)
12
12
13
- This resource allows you to create and manage GitLab groups .
13
+ The ` gitlab_group ` resource allows to manage the lifecycle of a group .
14
14
15
- Note your provider will need to be configured with admin-level access for this resource to work .
15
+ -> On GitLab SaaS, you must use the GitLab UI to create groups without a parent group. You cannot use this provider nor the API to do this .
16
16
17
- ** Upstream API** : [ GitLab Groups API] ( https://docs.gitlab.com/ee/api/groups.html )
17
+ ** Upstream API** : [ GitLab REST API docs ] ( https://docs.gitlab.com/ee/api/groups.html )
18
18
19
19
## Example Usage
20
20
Original file line number Diff line number Diff line change @@ -17,9 +17,11 @@ import (
17
17
18
18
var _ = registerResource ("gitlab_group" , func () * schema.Resource {
19
19
return & schema.Resource {
20
- Description : "This resource allows you to create and manage GitLab groups.\n \n " +
21
- "Note your provider will need to be configured with admin-level access for this resource to work.\n \n " +
22
- "**Upstream API**: [GitLab Groups API](https://docs.gitlab.com/ee/api/groups.html)" ,
20
+ Description : `The ` + "`gitlab_group`" + ` resource allows to manage the lifecycle of a group.
21
+
22
+ -> On GitLab SaaS, you must use the GitLab UI to create groups without a parent group. You cannot use this provider nor the API to do this.
23
+
24
+ **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/ee/api/groups.html)` ,
23
25
24
26
CreateContext : resourceGitlabGroupCreate ,
25
27
ReadContext : resourceGitlabGroupRead ,
You can’t perform that action at this time.
0 commit comments