mirror of
https://github.com/github/octodns.git
synced 2024-05-11 05:55:00 +00:00
Supply 'Marker' to Route53 client when paging in order to correctly retrieve the next page of results.
This commit is contained in:
@@ -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']
|
||||
|
||||
Reference in New Issue
Block a user