当前位置: 代码迷 >> 综合 >> Ansible---item实践配置
  详细解决方案

Ansible---item实践配置

热度:72   发布时间:2024-01-30 04:29:59.0

多种示例,以下都是放入main.yml里面

- name: "loop through list"debug:msg: "An item: {{ item }}"with_items:- 1- 2- 3- name: add several usersuser:name: "{{ item }}"groups: "wheel"state: presentwith_items:- testuser1- testuser2- name: "loop through list from a variable"debug:msg: "An item: {{ item }}"with_items: "{{ somelist }}"- name: more complex items to add several usersuser:name: "{{ item.name }}"uid: "{{ item.uid }}"groups: "{{ item.groups }}"state: presentwith_items:- { name: testuser1, uid: 1002, groups: "wheel, staff" }- { name: testuser2, uid: 1003, groups: staff }
  相关解决方案