Supply 'Marker' to Route53 client when paging in order to correctly retrieve the next page of results.

This commit is contained in:
anthonyvia
2017-06-29 09:55:52 -07:00
parent 74f5491426
commit b0de5de445
+1 -1
View File
@@ -250,7 +250,7 @@ class Route53Provider(BaseProvider):
more = True
start = {}
while more:
resp = self._conn.list_hosted_zones()
resp = self._conn.list_hosted_zones(**start)
for z in resp['HostedZones']:
zones[z['Name']] = z['Id']
more = resp['IsTruncated']