Merge pull request 'Update merge_yaml.py' (#192) from fenix-admin into main

Reviewed-on: fenix-gitea-admin/iac-teste#192
This commit is contained in:
2025-08-27 20:11:17 +00:00

View File

@ -30,6 +30,8 @@ def main():
yaml1 = yaml.load(f1) yaml1 = yaml.load(f1)
yaml2 = yaml.load(f2) yaml2 = yaml.load(f2)
merged = deep_merge_yaml(yaml1, yaml2)
from io import StringIO from io import StringIO
output = StringIO() output = StringIO()
yaml.dump(merged, output) yaml.dump(merged, output)