6

Ansible AWX 要求以 yaml 或 json 格式输入清单。

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

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

格式之间可以转换吗?

4

2 回答 2

10

这里给出的例子

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

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

-y标志提供 yaml 输出。省略标志会给出 json。

于 2019-08-30T13:05:34.360 回答
1

这里有一个用python编写的转换器。

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

于 2019-08-30T13:19:05.457 回答