update sample config

This commit is contained in:
Cort Buffington
2020-02-17 19:20:10 -06:00
parent 7fc4ce0495
commit 21f9c680be
2 changed files with 23 additions and 4 deletions

View File

@@ -47,6 +47,19 @@ BRIDGES = {
]
}
'''
list the names of each system that should process unit to unit (individual) calls. Processing
is both ingress and egress.
'''
UNIT = ['ONE', 'TWO']
'''
This is for testing the syntax of the file. It won't eliminate all errors, but running this file
like it were a Python program itself will tell you if the syntax is correct!
'''
if __name__ == '__main__':
from pprint import pprint
pprint(BRIDGES)
print(UNIT)