Skip to content

Commit 136ba3d

Browse files
committed
fix(cloudcontrol): increase to 100 max results
1 parent a2e0f5a commit 136ba3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/cloudcontrol.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ func (l *CloudControlResourceLister) List(_ context.Context, o interface{}) ([]r
9090

9191
params := &cloudcontrolapi.ListResourcesInput{
9292
TypeName: ptr.String(l.TypeName),
93-
MaxResults: ptr.Int64(1),
93+
MaxResults: ptr.Int64(100),
9494
}
9595

9696
if err := svc.ListResourcesPages(params, func(page *cloudcontrolapi.ListResourcesOutput, lastPage bool) bool {

0 commit comments

Comments
 (0)