gpt4 book ai didi

ansible - 在 Ansible 的 vars_prompt 中使用变量作为默认值

转载 作者:行者123 更新时间:2023-12-03 23:22:05 26 4
gpt4 key购买 nike

我试图使用 vars_prompt在 Ansible 中,默认值取自事实(或之前定义的变量)。该剧本旨在用作初始供应的临时剧本。

我的剧本:

---
- hosts: server01
gather_facts: True
vars_prompt:
- name: new_hostname
prompt: please enter the name for the target
default: "{{ ansible_hostname }}"
private: no
tasks:
- debug: msg="{{ new_hostname }}"

当前结果:
please enter the name for the target [{{ ansible_hostname }}]:
ERROR! 'ansible_hostname' is undefined

预期结果(假设 ansible_hostname=server01 :
please enter the name for the target [server01]:

是否可以在 Ansible 中实现?

最佳答案

这可以使用 pause module 来实现:

---
- hosts: server01
gather_facts: True
tasks:
- pause:
prompt: please enter the name for the target [{{ ansible_hostname }}]
register: prompt

- debug:
msg: "{{ prompt.user_input if prompt.user_input else ansible_hostname }}"

关于ansible - 在 Ansible 的 vars_prompt 中使用变量作为默认值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38645931/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com