From a3390b63fe317eb2fea5d78fb99c8a5e8fc8eaf3 Mon Sep 17 00:00:00 2001 From: Kevin Breit Date: Fri, 2 Mar 2018 09:09:32 -0600 Subject: [PATCH] Reversed orser of icmp_type and icmp_code per bug 36378 (#36380) --- lib/ansible/modules/cloud/amazon/ec2_vpc_nacl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/cloud/amazon/ec2_vpc_nacl.py b/lib/ansible/modules/cloud/amazon/ec2_vpc_nacl.py index 75bd846f0c0..ef8a1f436e2 100644 --- a/lib/ansible/modules/cloud/amazon/ec2_vpc_nacl.py +++ b/lib/ansible/modules/cloud/amazon/ec2_vpc_nacl.py @@ -84,7 +84,7 @@ EXAMPLES = ''' Project: phoenix Description: production DMZ ingress: [ - # rule no, protocol, allow/deny, cidr, icmp_code, icmp_type, + # rule no, protocol, allow/deny, cidr, icmp_type, icmp_code, # port from, port to [100, 'tcp', 'allow', '0.0.0.0/0', null, null, 22, 22], [200, 'tcp', 'allow', '0.0.0.0/0', null, null, 80, 80],