mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-01 16:23:10 +00:00
Added description to single net interface (#51602)
* Added description to single net interface * ec2_instance single iface description changelog
This commit is contained in:
committed by
John R Barker
parent
beb2af83c1
commit
b8790abcbe
@@ -0,0 +1,2 @@
|
||||
bugfixes:
|
||||
- ec2_instance - Correctly adds description when adding a single ENI to the instance
|
||||
@@ -926,6 +926,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]
|
||||
|
||||
Reference in New Issue
Block a user