2023-10-06 19:16:30 -04:00

11 lines
243 B
Python

import os
from iam.lib.utils import get_pkg_dir, open_yaml, to_yaml
all = None
yml_dir = get_pkg_dir(__name__)
conf_files = open_yaml(os.path.join(yml_dir, "devops.yml"))
for conf in conf_files:
all = conf.get("providers", {})
break