mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Fix typo in cloud/amazon/ec2_vpc_nacl_facts (#27534)
This commit is contained in:
committed by
Sloane Hertel
parent
be58fa979d
commit
3d20a2ea82
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user