From 3d20a2ea822efc9f2060e0d27561cc8131f69064 Mon Sep 17 00:00:00 2001 From: Brandon Davidson Date: Wed, 2 Aug 2017 12:26:28 -0400 Subject: [PATCH] Fix typo in cloud/amazon/ec2_vpc_nacl_facts (#27534) --- lib/ansible/modules/cloud/amazon/ec2_vpc_nacl_facts.py | 2 +- 1 file changed, 1 insertion(+), 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 9247b3bc8c6..23529a2faf4 100644 --- a/lib/ansible/modules/cloud/amazon/ec2_vpc_nacl_facts.py +++ b/lib/ansible/modules/cloud/amazon/ec2_vpc_nacl_facts.py @@ -140,7 +140,7 @@ def list_ec2_vpc_nacls(connection, module): if 'entries' in nacl: nacl['egress'] = [nacl_entry_to_list(entry) for entry in nacl['entries'] if entry['rule_number'] != 32767 and entry['egress']] - nacl['ingress'] = [nacl_entry_to_list(e) for entry in nacl['entries'] + nacl['ingress'] = [nacl_entry_to_list(entry) for entry in nacl['entries'] if entry['rule_number'] != 32767 and not entry['egress']] del nacl['entries'] if 'associations' in nacl: