vars_prompt和msg是Ansible中的两个关键字,用于在执行Ansible Playbook时与用户进行交互和输出信息。
示例:
- name: Print Hello World
hosts: localhost
vars_prompt:
- name: message
prompt: "Please enter the message to print"
tasks:
- name: Print Message
debug:
msg: "{{ message }}"
在上述示例中,当执行Playbook时,会提示用户输入要打印的消息内容。用户输入的值将存储在变量message
中,并通过debug
模块的msg
参数打印出来。
示例:
- name: Print Hello World
hosts: localhost
tasks:
- name: Print Message
debug:
msg: "Hello World"
在上述示例中,执行Playbook时会输出消息"Hello World"。
请注意,上述示例中没有提及任何特定的云计算品牌商,因为这些关键字是Ansible的功能,与特定的云计算品牌商无关。
领取专属 10元无门槛券
手把手带您无忧上云