You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 29, 2021. It is now read-only.
bastion_id, bastion = [(_id, instance) for _id, instance in vpc_details['instances'].items() if instance['instance-name']['Value'].endswith('bastion')][0]
except (IndexError, KeyError) as err:
logger.info('Bastion Elastic-IP not updated')
return False
else:
logger.info('Bastion Elastic-IP not updated')
if not bastion['public-ip-address'] in [addr['PublicIp'] for addr in vpc_details['elastic-addresses']]:
return False
try:
[awe['uri'] for awe in vpc_details['rds-instances'].values()]
except KeyError as err:
logger.info('RDSInstances not ready')
return False
try:
[awe['endpoint'] for awe in vpc_details['elasticache-clusters'].values() if awe['status'] == 'available']