Skip to content

Commit

Permalink
Merge pull request #25242 from ruzarowski/2015.8
Browse files Browse the repository at this point in the history
Make SourceDestCheck flag available to network interface definition
  • Loading branch information
Nicole Thomas committed Jul 8, 2015
2 parents e6251e7 + 62b6d4f commit 810b109
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion salt/cloud/clouds/ec2.py
Original file line number Diff line number Diff line change
Expand Up @@ -1172,7 +1172,8 @@ def _create_eni_if_necessary(interface):
params = {'SubnetId': interface['SubnetId']}

for k in ('Description', 'PrivateIpAddress',
'SecondaryPrivateIpAddressCount'):
'SecondaryPrivateIpAddressCount',
'SourceDestCheck'):
if k in interface:
params[k] = interface[k]

Expand Down

0 comments on commit 810b109

Please sign in to comment.