Cast target port to an int in elb_target_group. Fixes #32098 (#32202)

pull/32212/head
Marc Mercer 7 years ago committed by Sloane Hertel
parent 104934c095
commit 17a008654a

@ -459,7 +459,7 @@ def create_or_update_target_group(connection, module):
instances_to_add = []
for target in params['Targets']:
if target['Id'] in add_instances:
instances_to_add.append(target)
instances_to_add.append({'Id': target['Id'], 'Port': int(target['Port'])})
changed = True
try:

Loading…
Cancel
Save