@@ -63,20 +63,20 @@ var _ = registerResource("gitlab_group", func() *schema.Resource {
63
63
Optional : true ,
64
64
},
65
65
"lfs_enabled" : {
66
- Description : "Boolean, defaults to true. Whether to enable LFS" ,
66
+ Description : "Defaults to true. Enable/disable Large File Storage ( LFS) for the projects in this group. " ,
67
67
Type : schema .TypeBool ,
68
68
Optional : true ,
69
69
Default : true ,
70
70
},
71
71
"default_branch_protection" : {
72
- Description : "Int, defaults to 2." ,
72
+ Description : "Defaults to 2. See https://docs.gitlab.com/ee/api/groups.html#options-for-default_branch_protection " ,
73
73
Type : schema .TypeInt ,
74
74
Optional : true ,
75
75
Default : 2 ,
76
76
ValidateFunc : validation .IntInSlice ([]int {0 , 1 , 2 }),
77
77
},
78
78
"request_access_enabled" : {
79
- Description : "Boolean, defaults to false. Whether to" ,
79
+ Description : "Defaults to false. Allow users to request member access. " ,
80
80
Type : schema .TypeBool ,
81
81
Optional : true ,
82
82
Default : false ,
@@ -89,57 +89,57 @@ var _ = registerResource("gitlab_group", func() *schema.Resource {
89
89
ValidateFunc : validation .StringInSlice ([]string {"private" , "internal" , "public" }, true ),
90
90
},
91
91
"share_with_group_lock" : {
92
- Description : "Boolean, defaults to false. Prevent sharing" ,
92
+ Description : "Defaults to false. Prevent sharing a project with another group within this group. " ,
93
93
Type : schema .TypeBool ,
94
94
Optional : true ,
95
95
Default : false ,
96
96
},
97
97
"project_creation_level" : {
98
- Description : ", defaults to Maintainer ." ,
98
+ Description : "Defaults to maintainer. Determine if developers can create projects in the group ." ,
99
99
Type : schema .TypeString ,
100
100
Optional : true ,
101
101
Default : "maintainer" ,
102
102
ValidateFunc : validation .StringInSlice ([]string {"noone" , "maintainer" , "developer" }, true ),
103
103
},
104
104
"auto_devops_enabled" : {
105
- Description : "Boolean, defaults to false. Default to Auto" ,
105
+ Description : "Defaults to false. Default to Auto DevOps pipeline for all projects within this group. " ,
106
106
Type : schema .TypeBool ,
107
107
Optional : true ,
108
108
Default : false ,
109
109
},
110
110
"emails_disabled" : {
111
- Description : "Boolean, defaults to false. Disable email notifications" ,
111
+ Description : "Defaults to false. Disable email notifications. " ,
112
112
Type : schema .TypeBool ,
113
113
Optional : true ,
114
114
Default : false ,
115
115
},
116
116
"mentions_disabled" : {
117
- Description : "Boolean, defaults to false. Disable the capability" ,
117
+ Description : "Defaults to false. Disable the capability of a group from getting mentioned. " ,
118
118
Type : schema .TypeBool ,
119
119
Optional : true ,
120
120
Default : false ,
121
121
},
122
122
"subgroup_creation_level" : {
123
- Description : ", defaults to Owner ." ,
123
+ Description : "Defaults to owner. Allowed to create subgroups ." ,
124
124
Type : schema .TypeString ,
125
125
Optional : true ,
126
126
Default : "owner" ,
127
127
ValidateFunc : validation .StringInSlice ([]string {"owner" , "maintainer" }, true ),
128
128
},
129
129
"require_two_factor_authentication" : {
130
- Description : "Boolean, defaults to false." ,
130
+ Description : "Defaults to false. Require all users in this group to setup Two-factor authentication ." ,
131
131
Type : schema .TypeBool ,
132
132
Optional : true ,
133
133
Default : false ,
134
134
},
135
135
"two_factor_grace_period" : {
136
- Description : "Int, defaults to 48." ,
136
+ Description : "Defaults to 48. Time before Two-factor authentication is enforced (in hours) ." ,
137
137
Type : schema .TypeInt ,
138
138
Optional : true ,
139
139
Default : 48 ,
140
140
},
141
141
"parent_id" : {
142
- Description : "Integer, id of the parent group (creates a nested group)." ,
142
+ Description : "Id of the parent group (creates a nested group)." ,
143
143
Type : schema .TypeInt ,
144
144
Optional : true ,
145
145
ForceNew : true ,
@@ -152,7 +152,7 @@ var _ = registerResource("gitlab_group", func() *schema.Resource {
152
152
Sensitive : true ,
153
153
},
154
154
"prevent_forking_outside_group" : {
155
- Description : "When enabled, users can not fork projects from this group to external namespaces." ,
155
+ Description : "Defaults to false. When enabled, users can not fork projects from this group to external namespaces." ,
156
156
Type : schema .TypeBool ,
157
157
Optional : true ,
158
158
Default : false ,
0 commit comments