Skip to content

Commit 4272ca7

Browse files
committed
Remove extraneous ForceNew in data source attribute. Closes #438
1 parent f15cdc5 commit 4272ca7

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

internal/provider/data_source_gitlab_projects.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,6 @@ func flattenProjects(projects []*gitlab.Project) (values []map[string]interface{
200200
}
201201

202202
var _ = registerDataSource("gitlab_projects", func() *schema.Resource {
203-
// lintignore: S024 // TODO: Resolve this tfproviderlint issue
204203
return &schema.Resource{
205204
Description: `The ` + "`gitlab_projects`" + ` data source allows details of multiple projects to be retrieved. Optionally filtered by the set attributes.
206205
@@ -223,7 +222,6 @@ var _ = registerDataSource("gitlab_projects", func() *schema.Resource {
223222
Description: "The ID of the group owned by the authenticated user to look projects for within. Cannot be used with `min_access_level`, `with_programming_language` or `statistics`.",
224223
Type: schema.TypeInt,
225224
Optional: true,
226-
ForceNew: true,
227225
},
228226
"page": {
229227
Description: "The first page to begin the query on.",

0 commit comments

Comments
 (0)