ansible.builtin.random_choice 查找 – 从列表中返回随机元素
注意
这个查找插件是 ansible-core
的一部分,包含在所有 Ansible 安装中。在大多数情况下,您可以使用短插件名称 random_choice
。但是,我们建议您使用完全限定集合名称 (FQCN) ansible.builtin.random_choice
,以便轻松链接到插件文档并避免与其他可能具有相同查找插件名称的集合冲突。
概要
“random_choice” 功能可用于随机选择某项内容。虽然它不是负载均衡器(有用于这些的模块),但在类似 MacGyver 的情况下,它可以在某种程度上用作一个简陋的负载均衡器。
在更基本的层面上,它们可以用来为原本可预测的自动化环境增添混乱和刺激。
示例
- name: Magic 8 ball for MUDs
ansible.builtin.debug:
msg: "{{ item }}"
with_random_choice:
- "go through the door"
- "drink from the goblet"
- "press the red button"
- "do nothing"
返回值
键 |
描述 |
---|---|
随机项目 返回: 成功 |