在Ansible中遍历库存组可以通过使用with_inventory_hostnames
关键字实现。with_inventory_hostnames
关键字允许您在任务中迭代库存组中的所有主机。
下面是一个示例:
- name: 遍历库存组
hosts: all
tasks:
- name: 打印库存组中的主机名
debug:
msg: "{{ item }}"
with_inventory_hostnames:
- my_inventory_group
在上面的示例中,我们使用with_inventory_hostnames
关键字来遍历名为my_inventory_group
的库存组中的所有主机。然后,使用debug
模块打印每个主机的名称。
请注意,您需要将my_inventory_group
替换为您实际使用的库存组名称。
这是一个简单的示例,您可以根据自己的需求在任务中执行更复杂的操作。有关Ansible的更多信息,请参阅Ansible官方文档。
腾讯云相关产品和产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云