mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Use the correct alias syntax
This commit is contained in:
parent
17e6be671b
commit
5224375a5a
1 changed files with 1 additions and 1 deletions
|
@ -1183,7 +1183,7 @@ def main():
|
|||
assign_public_ip = dict(type='bool', default=False),
|
||||
private_ip = dict(),
|
||||
instance_profile_name = dict(),
|
||||
instance_ids = dict(type='list', alias='instance_id'),
|
||||
instance_ids = dict(type='list', aliases=['instance_id']),
|
||||
source_dest_check = dict(type='bool', default=True),
|
||||
state = dict(default='present'),
|
||||
exact_count = dict(type='int', default=None),
|
||||
|
|
Loading…
Reference in a new issue