I want to use Ansible-lint to check to see if subnets are formatted correctly in my yaml files.
right: 10.10.10.0/32
Wrong: 10.10.10.0 /32
I created a custom rule:
from ansiblelint import AnsibleLintRule
import re
class CheckCustomPattern(AnsibleLintRule):
id = 'CUSTOM005'
shortdesc = 'Check if pattern "\\s\/[1-3][0-9]" is found'
description = 'This rule checks if the pattern "\\s\/[1-3][0-9]" is found in any file.'
severity = 'HIGH'
tags = ['files']
def match(self, file, text):
with open(file['path'], 'r') as file_content:
content = file_content.read()
if re.search(r'\s\/[1-3][0-9]', content):
return True
return False
I have checked the Regex against a tester and it is correct.
When I run it, tt is matching on all IP addresses, even ones that are correct. It is even matching on non-IP addresses, like random string like [ TCP UDP ICMP ]. I have checked the regex syntax in a tester and it is correct.
Not sure what I am missing.
It's kind of expected: you're loading the whole file and checking the whole file. You should iterate over the list of lines instead. It's been years since I wrote plain Python code but here's how would it look like in an oversimplified way:
For the example file, the code above will produce the following result:
I would adjust the regex because chances are that a space would be added after the slash, for example.