你如何将 ansible ini inventory 转换成 json 或 yaml

How do you convert ansible ini inventory into json or yaml

A​​nsible AWX 要求以 yaml 或 json 格式输入库存。

当您开始学习 ansible 时,您可以选择从 ini 格式的清单开始。

https://docs.ansible.com/ansible/latest/user_guide/intro_inventory.html

是否可以在格式之间进行转换?

此处给出示例

https://evrard.me/convert-ansible-inventories-with-ansible-inventory-cli

ansible-inventory -i inventory.ini -y --list > inventory.yaml

-y 标志给出 yaml 输出。 省略标志给出 json.

这里有python写的转换器

https://github.com/appuio/ansible-ini2yaml