parent
13f3cbaf3b
commit
eceabec71f
1 changed files with 8 additions and 3 deletions
|
@ -498,9 +498,14 @@ class Ec2Inventory(object):
|
||||||
try:
|
try:
|
||||||
conn = self.connect_to_aws(rds, region)
|
conn = self.connect_to_aws(rds, region)
|
||||||
if conn:
|
if conn:
|
||||||
instances = conn.get_all_dbinstances()
|
marker = None
|
||||||
|
while True:
|
||||||
|
instances = conn.get_all_dbinstances(marker=marker)
|
||||||
|
marker = instances.marker
|
||||||
for instance in instances:
|
for instance in instances:
|
||||||
self.add_rds_instance(instance, region)
|
self.add_rds_instance(instance, region)
|
||||||
|
if not marker:
|
||||||
|
break
|
||||||
except boto.exception.BotoServerError as e:
|
except boto.exception.BotoServerError as e:
|
||||||
error = e.reason
|
error = e.reason
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue