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:
parent
6039ff9a24
commit
6273574eb4
1 changed files with 3 additions and 3 deletions
|
@ -388,9 +388,9 @@ def main():
|
|||
module = AnsibleModule(
|
||||
argument_spec=argument_spec,
|
||||
supports_check_mode=True,
|
||||
required_together=[
|
||||
['device_id', 'private_ip_address'],
|
||||
],
|
||||
required_by={
|
||||
'private_ip_address': ['device_id'],
|
||||
},
|
||||
)
|
||||
|
||||
if not HAS_BOTO:
|
||||
|
|
Loading…
Reference in a new issue