Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

elb_classic_lb: fix return value _format_listener method to include SSLCertificateId #860

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
bugfixes:
- elb_classic_lb - modify the return value of _format_listeners method to resolve a failure creating https listeners (https://github.com/ansible-collections/amazon.aws/pull/860).
2 changes: 1 addition & 1 deletion plugins/modules/elb_classic_lb.py
Original file line number Diff line number Diff line change
Expand Up @@ -890,7 +890,7 @@ def _format_listener(self, listener, inject_protocol=False):
if ssl_id:
formatted_listener['SSLCertificateId'] = ssl_id

return snake_dict_to_camel_dict(listener, True)
return formatted_listener

def _format_healthcheck_target(self):
"""Compose target string from healthcheck parameters"""
Expand Down