Azure

我們可以使用 Azure CLI 下載 Azure 部署文件嗎?

  • May 9, 2019

是否可以使用 Azure CLI 下載 Azure 資源的部署 JSON 文件(模板)?PowerShell 中的等價物似乎是這個命令。 https://docs.microsoft.com/en-us/powershell/module/az.resources/save-azdeploymenttemplate?view=azps-2.0.0

在這種情況下,資源是雲服務。

看起來az group deployment export是執行此操作的命令。

az group deployment export --name
                          --resource-group
                          [--subscription]

https://docs.microsoft.com/en-us/cli/azure/group/deployment?view=azure-cli-latest#az-group-deployment-export

我不確定將輸出保存到文件的最佳方法是什麼,但看起來您可以在 Bash 命令行上使用 > 重定向到文件。

引用自:https://serverfault.com/questions/966497