Merge pull request #83 from anthonyvia/fix-route53-paging

Supply 'Marker' to Route53 client when paging in order to correctly r…
This commit is contained in:
Ross McFarland
2017-06-29 10:28:53 -07:00
committed by GitHub
+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']