Added description to single net interface (#51602)
* Added description to single net interface
* ec2_instance single iface description changelog
(cherry picked from commit b8790abcbe
)
This commit is contained in:
parent
483aa64216
commit
d064534df6
2 changed files with 4 additions and 0 deletions
|
@ -0,0 +1,2 @@
|
|||
bugfixes:
|
||||
- ec2_instance - Correctly adds description when adding a single ENI to the instance
|
|
@ -860,6 +860,8 @@ def build_network_spec(params, ec2=None):
|
|||
ec2=ec2
|
||||
)
|
||||
spec['Groups'] = [g['GroupId'] for g in groups]
|
||||
if network.get('description') is not None:
|
||||
spec['Description'] = network['description']
|
||||
# TODO more special snowflake network things
|
||||
|
||||
return [spec]
|
||||
|
|
Loading…
Reference in a new issue