Ansible - 如何 运行 Azure 云中的 YAML 代码 Shell

Ansible - How to run YAML code in Azure Cloud Shell

问题:如何在Azure Cloud Shell中运行以下YAML

this Ansible tutorial 的第 1 步中,作者要求 运行 以下 YAML - 创建资源组。我在 Azure Cloud Shell(预装了 Ansible)中使用 PowerShell。

- name: Create resource group
    azure_rm_resourcegroup:
    name: rg-cs-ansible
    location: eastus

将其保存到 playbook.yaml 文本文件并 运行 使用 ansible-playbook playbook.yaml,但您还需要具有适当的剧本文件结构。像这样:

---
- hosts: localhost
  tasks:
  - name: Create resource groupf
    azure_rm_resourcegroup:
      name: rg-cs-ansible
      location: eastus