YAML ファイルa.yamlがあり、次の内容があります。
allocations:
hosts:
- {name: xyz, farm: xyz1}
- {name: xyz, farm: xyz1}
私の Perl スクリプトでは、 を使用LoadFile('a.yaml')
し、データ構造に変換して名前を変更しました。データ構造をダンプすると、YAML 形式が変更されます。
allocations:
hosts:
- farm: xyz1
name: xyz
- farm: xyz1
name: xyz
しかし、YAML出力を上記のa.yamlのように名前を変更して同じにしたい:
allocations:
hosts:
- {name: xyz1, farm: xyz1}
- {name: xyz1, farm: xyz1}