mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-23 05:10:22 -07:00
Add 'instance_protocol' parameter when fetching ELB Listeners (#40785)
This PR changes the ec2_elb_facts module to output the value of ELB InstanceProtocol
This commit is contained in:
parent
0e536f746b
commit
12812d21c5
1 changed files with 1 additions and 0 deletions
|
@ -128,6 +128,7 @@ class ElbInformation(object):
|
||||||
'load_balancer_port': listener[0],
|
'load_balancer_port': listener[0],
|
||||||
'instance_port': listener[1],
|
'instance_port': listener[1],
|
||||||
'protocol': listener[2],
|
'protocol': listener[2],
|
||||||
|
'instance_protocol': listener[3]
|
||||||
}
|
}
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue