elb_target_group: use port parameter as default for target port (#38578)
The docs suggest that `port` parameter is the default port upon which targets listen. As such, a target need only provide a `Port` key to override the default.
This commit is contained in:
parent
8cdd75a09f
commit
dc09ddfbd5
1 changed files with 1 additions and 1 deletions
|
@ -502,7 +502,7 @@ def create_or_update_target_group(connection, module):
|
||||||
instances_to_add = []
|
instances_to_add = []
|
||||||
for target in params['Targets']:
|
for target in params['Targets']:
|
||||||
if target['Id'] in add_instances:
|
if target['Id'] in add_instances:
|
||||||
instances_to_add.append({'Id': target['Id'], 'Port': int(target['Port'])})
|
instances_to_add.append({'Id': target['Id'], 'Port': int(target.get('Port', module.params.get('port')))})
|
||||||
|
|
||||||
changed = True
|
changed = True
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in a new issue