gpt4 book ai didi

azure - 使用 ansible 获取虚拟机事实

转载 作者:行者123 更新时间:2023-12-03 05:20:48 25 4
gpt4 key购买 nike

我正在运行一个ansible playbook来获取azure中虚拟机的状态,我的playbook看起来像这样

- name: Get facts by name
azure_rm_virtualmachine_facts:
resource_group: startAnsible
name: startAnsible-vm

enter image description here

是否有任何方法可以获取Azure中虚拟机的事实/信息。

最佳答案

您的代码是一个任务,但从错误来看,您正尝试将其作为戏剧来执行。

Playbook 文件包含一个 play 列表,每个 play 执行一个任务(和/或角色)列表。

所以你需要把你的任务放在戏剧中:

- name: The play
hosts: <the target machine from your inventory>
tasks:
- name: Get facts by name
azure_rm_virtualmachine_facts:
resource_group: startAnsible
name: startAnsible-vm

关于azure - 使用 ansible 获取虚拟机事实,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72573563/

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