mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
[ec2_vpc_nacl_id] Add nacl_id alias for nacl_ids option (#32223)
This commit is contained in:
committed by
Will Thames
parent
f2023a84a6
commit
a199d9d91e
@@ -25,6 +25,7 @@ options:
|
||||
- A list of Network ACL IDs to retrieve facts about.
|
||||
required: false
|
||||
default: []
|
||||
aliases: [nacl_id]
|
||||
filters:
|
||||
description:
|
||||
- A dict of filters to apply. Each dict item consists of a filter key and a filter value. See \
|
||||
@@ -173,7 +174,7 @@ def main():
|
||||
argument_spec = ec2_argument_spec()
|
||||
argument_spec.update(
|
||||
dict(
|
||||
nacl_ids=dict(default=[], type='list'),
|
||||
nacl_ids=dict(default=[], type='list', aliases=['nacl_id']),
|
||||
filters=dict(default={}, type='dict')
|
||||
)
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user