码迷,mamicode.com
首页 > 其他好文 > 详细

Ansible Loop循环控制

时间:2020-03-28 16:09:51      阅读:99      评论:0      收藏:0      [点我收藏+]

标签:with   span   task   creat   use   字典   data   groups   循环   

在Ansible 2.5之前主要使用with_ <lookup>关键字来创建循环,循环关键字基本上类似于with_list,with_items。

Ansible 2.5开始就可以使用loop来创建循环。
 

 

示例1 数组循环:

  tasks:

    - name: create user

      user:

          name: {{ item }}

          loop:

          - user01

          - user02

          - user03

 

示例2 字典循环:

tasks:

- name: create user and group

  user:

        name: {{ item.name }}

        group: {{ item.groups }}

        loop:

        - name: ‘testuser1‘

          groups: ‘wheel‘

        - name: ‘testuser2‘

          groups: ‘root‘

 

未完待续...

Ansible Loop循环控制

标签:with   span   task   creat   use   字典   data   groups   循环   

原文地址:https://www.cnblogs.com/vincenshen/p/12587749.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!