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(
|
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:
|
||||||
|
|
Loading…
Reference in a new issue