Skip to content

Commit

Permalink
fix: validation to allow 1000 results per page (#2185)
Browse files Browse the repository at this point in the history
  • Loading branch information
dschniepp authored Mar 7, 2024
1 parent b9af9f3 commit a69c6f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion github/data_source_github_repositories.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func dataSourceGithubRepositories() *schema.Resource {
Type: schema.TypeInt,
Optional: true,
Default: 100,
ValidateDiagFunc: toDiagFunc(validation.IntBetween(0, 100), "results_per_page"),
ValidateDiagFunc: toDiagFunc(validation.IntBetween(0, 1000), "results_per_page"),
},
"full_names": {
Type: schema.TypeList,
Expand Down

0 comments on commit a69c6f0

Please sign in to comment.