ansible hosts写法
时间: 2023-11-17 07:56:11 浏览: 80
ansible.hosts:动态创建主机文件的Ansible角色
在 Ansible 中,可以使用 INI 格式或 YAML 格式来编写 hosts 文件。INI 格式的 hosts 文件示例如下:
```
[webservers]
web1.example.com
web2.example.com
[dbservers]
db1.example.com
db2.example.com
```
YAML 格式的 hosts 文件示例如下:
```
all:
children:
webservers:
hosts:
web1.example.com:
web2.example.com:
dbservers:
hosts:
db1.example.com:
db2.example.com:
```
阅读全文