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

Fix ec2_eip parameter logic (#55194)

This commit is contained in:
flowerysong 2019-04-12 07:40:25 -04:00 committed by Will Thames
parent 6039ff9a24
commit 6273574eb4

View file

@ -388,9 +388,9 @@ def main():
module = AnsibleModule( module = AnsibleModule(
argument_spec=argument_spec, argument_spec=argument_spec,
supports_check_mode=True, supports_check_mode=True,
required_together=[ required_by={
['device_id', 'private_ip_address'], 'private_ip_address': ['device_id'],
], },
) )
if not HAS_BOTO: if not HAS_BOTO: