1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fixing bug in cross-zone load balancing enablement

Fixes #8861
This commit is contained in:
tepwil 2014-09-04 09:53:41 -05:00 committed by James Cammarata
parent 9adde1eab0
commit ae0f80c6e8

View file

@ -591,7 +591,7 @@ class ElbManager(object):
def _set_cross_az_load_balancing(self):
attributes = self.elb.get_attributes()
if self.cross_az_load_balancing == 'yes':
if self.cross_az_load_balancing:
attributes.cross_zone_load_balancing.enabled = True
else:
attributes.cross_zone_load_balancing.enabled = False