Skip to content

Commit

Permalink
Datacatalog increase tag page size to 1000 (#7495) (#14077)
Browse files Browse the repository at this point in the history
Signed-off-by: Modular Magician <magic-modules@google.com>
  • Loading branch information
modular-magician committed Mar 23, 2023
1 parent efcff70 commit b56d5b1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .changelog/7495.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:bug
datacatalog: fixed `google_data_catalog_tag` only allowing 10 tags.. increased to 1000
```
2 changes: 1 addition & 1 deletion google/resource_data_catalog_tag.go
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ func resourceDataCatalogTagRead(d *schema.ResourceData, meta interface{}) error
return err
}

url, err := replaceVars(d, config, "{{DataCatalogBasePath}}{{parent}}/tags")
url, err := replaceVars(d, config, "{{DataCatalogBasePath}}{{parent}}/tags?pageSize=1000")
if err != nil {
return err
}
Expand Down

0 comments on commit b56d5b1

Please sign in to comment.