gpt4 book ai didi

azure - 我们如何在 Azure Bash 中一起运行多个 CLI 命令?

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

我有多个资源可以使用 CLI 命令一起部署在我的环境中。例如:我需要使用单个脚本创建 VM、Web 应用程序、Redis 缓存等。我们可以一起创建所有资源,而不是创建单独的资源。

最佳答案

一种方法是将所有命令放入 .sh shell 脚本中。以下是如何执行此操作的示例:

#!/bin/bash

az group create -n MyResourceGroup -l centralus

az vm create -n MyVm -g MyResourceGroup --image UbuntuLTS

az webapp create -g MyResourceGroup -p MyPlan -n MyUniqueAppName

# More Azure CLI commands to create resources

然后您可以在本地环境 bash shell 或 Azure Cloud Shell 中运行脚本像这样:

username@Azure:~$ ./script.sh

另一种方法是使用 ARM template来部署您的资源。

关于azure - 我们如何在 Azure Bash 中一起运行多个 CLI 命令?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60843192/

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