From a199d9d91ed84c76636c2d7c0224f576b4717b78 Mon Sep 17 00:00:00 2001 From: Prasad Katti Date: Thu, 26 Oct 2017 20:21:53 -0700 Subject: [PATCH] [ec2_vpc_nacl_id] Add nacl_id alias for nacl_ids option (#32223) --- lib/ansible/modules/cloud/amazon/ec2_vpc_nacl_facts.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/ansible/modules/cloud/amazon/ec2_vpc_nacl_facts.py b/lib/ansible/modules/cloud/amazon/ec2_vpc_nacl_facts.py index cd93f5875f..fe29d5d7e4 100644 --- a/lib/ansible/modules/cloud/amazon/ec2_vpc_nacl_facts.py +++ b/lib/ansible/modules/cloud/amazon/ec2_vpc_nacl_facts.py @@ -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') ) )