Skip to content

Commit 40bf9d5

Browse files
committed
Fix lint issue
1 parent d19ee24 commit 40bf9d5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

internal/provider/data_source_gitlab_projects.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,6 @@ var _ = registerDataSource("gitlab_projects", func() *schema.Resource {
212212

213213
ReadContext: dataSourceGitlabProjectsRead,
214214

215-
// lintignore: S006 // TODO: Resolve this tfproviderlint issue
216215
Schema: map[string]*schema.Schema{
217216
"max_queryable_pages": {
218217
Description: "The maximum number of project results pages that may be queried. Prevents overloading your Gitlab instance in case of a misconfiguration.",
@@ -791,6 +790,9 @@ var _ = registerDataSource("gitlab_projects", func() *schema.Resource {
791790
Computed: true,
792791
Elem: &schema.Schema{
793792
Type: schema.TypeMap,
793+
Elem: &schema.Schema{
794+
Type: schema.TypeString,
795+
},
794796
},
795797
},
796798
"packages_enabled": {

0 commit comments

Comments
 (0)