Skip to content

Commit b56d5b1

Browse files
Datacatalog increase tag page size to 1000 (#7495) (#14077)
Signed-off-by: Modular Magician <[email protected]>
1 parent efcff70 commit b56d5b1

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.changelog/7495.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:bug
2+
datacatalog: fixed `google_data_catalog_tag` only allowing 10 tags.. increased to 1000
3+
```

google/resource_data_catalog_tag.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ func resourceDataCatalogTagRead(d *schema.ResourceData, meta interface{}) error
209209
return err
210210
}
211211

212-
url, err := replaceVars(d, config, "{{DataCatalogBasePath}}{{parent}}/tags")
212+
url, err := replaceVars(d, config, "{{DataCatalogBasePath}}{{parent}}/tags?pageSize=1000")
213213
if err != nil {
214214
return err
215215
}

0 commit comments

Comments
 (0)