default eip domain to 'standard' for cloudformation creations
This commit is contained in:
parent
9301b46346
commit
d55a0b6ef0
1 changed files with 3 additions and 2 deletions
|
|
@ -1949,11 +1949,12 @@ class ElasticAddress(object):
|
|||
properties = cloudformation_json.get('Properties')
|
||||
instance_id = None
|
||||
if properties:
|
||||
domain=properties.get('Domain')
|
||||
eip = ec2_backend.allocate_address(
|
||||
domain=properties.get('Domain'))
|
||||
domain=domain if domain else 'standard')
|
||||
instance_id = properties.get('InstanceId')
|
||||
else:
|
||||
eip = ec2_backend.allocate_address()
|
||||
eip = ec2_backend.allocate_address(domain='standard')
|
||||
|
||||
if instance_id:
|
||||
instance = ec2_backend.get_instance_by_id(instance_id)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue