#!/usr/bin/python3

import yaml
import json
with open("config-input.yaml") as f:
    s2=f.read()

j2=yaml.safe_load(s2)
with open("config-output.json","w") as f:
    json.dump(j2, f, indent=2)
    
