in scripts/create_master_checklist.py [0:0]
def get_arm_service_name(service_name, service_dictionary=None):
svc_match_found = False
for svc in service_dictionary:
if service_name in svc['names']:
svc_match_found = True
return svc['arm']
if not svc_match_found:
return None