我想用ansible
来实现这样的目标- debug:
msg: "{{ item }}"
with_items:
- "0"
- "1"
但是要从范围(2)生成而不是对迭代进行硬编码。你会怎么做?
答案 0 :(得分:4)
- debug:
var: item
with_sequence: 0-1
或
with_sequence: start=0 end=1
或
with_sequence: start=0 count=2
注意序列是字符串值,而不是整数(可以使用item|int
进行转换)