Ansible与范围内的项目

时间:2018-02-06 22:35:39

标签: loops ansible

我想用ansible

来实现这样的目标
- debug:
    msg: "{{ item }}"
  with_items:
    - "0"
    - "1"

但是要从范围(2)生成而不是对迭代进行硬编码。你会怎么做?

1 个答案:

答案 0 :(得分:4)

- debug:
    var: item
  with_sequence: 0-1

  with_sequence: start=0 end=1

  with_sequence: start=0 count=2

注意序列是字符串值,而不是整数(可以使用item|int进行转换)

参考:Looping over Integer Sequences