diff --git a/plugins/modules/eval_network_acls.py b/plugins/modules/eval_network_acls.py index 7888f81..bf6e445 100644 --- a/plugins/modules/eval_network_acls.py +++ b/plugins/modules/eval_network_acls.py @@ -296,7 +296,8 @@ def check_ingress_acls(acls, src_ip, dst_port): return True else: self.fail_json( - msg="Destination Subnet Network Acl Ingress Rules do not allow inbound traffic from source: {0} towards destination port {1}".format( + msg="Destination Subnet Network Acl Ingress Rules do not allow inbound traffic from source: {0} \ + towards destination port {1}".format( self.src_ip, str(self.dst_port) ) ) diff --git a/tests/config.yml b/tests/config.yml new file mode 100644 index 0000000..faff92e --- /dev/null +++ b/tests/config.yml @@ -0,0 +1,2 @@ +modules: + python_requires: '>=3.6'