mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-27 18:50:21 -07:00
[ec2_vpc_nacl_id] Add nacl_id alias for nacl_ids option (#32223)
This commit is contained in:
parent
f2023a84a6
commit
a199d9d91e
1 changed files with 2 additions and 1 deletions
|
@ -25,6 +25,7 @@ options:
|
||||||
- A list of Network ACL IDs to retrieve facts about.
|
- A list of Network ACL IDs to retrieve facts about.
|
||||||
required: false
|
required: false
|
||||||
default: []
|
default: []
|
||||||
|
aliases: [nacl_id]
|
||||||
filters:
|
filters:
|
||||||
description:
|
description:
|
||||||
- A dict of filters to apply. Each dict item consists of a filter key and a filter value. See \
|
- 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 = ec2_argument_spec()
|
||||||
argument_spec.update(
|
argument_spec.update(
|
||||||
dict(
|
dict(
|
||||||
nacl_ids=dict(default=[], type='list'),
|
nacl_ids=dict(default=[], type='list', aliases=['nacl_id']),
|
||||||
filters=dict(default={}, type='dict')
|
filters=dict(default={}, type='dict')
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue