Skip to content

Commit

Permalink
Merge pull request #177 from smutel/FixLintGenerateJson
Browse files Browse the repository at this point in the history
ci: Fix lint issues in generateJsonDatasources
  • Loading branch information
smutel authored Feb 1, 2023
2 parents fa6b48f + 17b366c commit 02676ac
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions utils/generateJsonDatasources
Original file line number Diff line number Diff line change
Expand Up @@ -106,19 +106,19 @@ func DataNetboxJSON${SECTION}${ITEM}List() *schema.Resource {
Schema: map[string]*schema.Schema{
"filter": {
Type: schema.TypeSet,
Optional: true,
Type: schema.TypeSet,
Optional: true,
Description: "Filter the records returned by the query.",
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"name": {
Type: schema.TypeString,
Required: true,
Type: schema.TypeString,
Required: true,
Description: "Name of the field to use for filtering.",
},
"value": {
Type: schema.TypeString,
Required: true,
Type: schema.TypeString,
Required: true,
Description: "Value of the field to use for filtering.",
},
},
Expand Down

0 comments on commit 02676ac

Please sign in to comment.