title | description | ms.topic | ms.date | ms.custom | keywords |
---|---|---|---|---|---|
Azure CLI Script Example - Create Batch account - Batch service | Microsoft Docs |
Learn how to create a Batch account in Batch service mode with this Azure CLI script example. This script also shows how to query or update various properties of the account. |
sample |
05/24/2022 |
devx-track-azurecli, seo-azure-cli |
batch, azure cli samples, azure cli code samples, azure cli script samples |
This script creates an Azure Batch account in Batch service mode and shows how to query or update various properties of the account. When you create a Batch account in the default Batch service mode, its compute nodes are assigned internally by the Batch service. Allocated compute nodes are subject to a separate vCPU (core) quota and the account can be authenticated either via shared key credentials or an Azure Active Directory token.
[!INCLUDE quickstarts-free-trial-note]
[!INCLUDE azure-cli-prepare-your-environment.md]
[!INCLUDE cli-launch-cloud-shell-sign-in.md]
:::code language="azurecli" source="~/azure_cli_scripts/batch/create-account/create-account.sh" id="FullScript":::
[!INCLUDE cli-clean-up-resources.md]
az group delete --name $resourceGroup
This script uses the following commands. Each command in the table links to command-specific documentation.
Command | Notes |
---|---|
az group create | Creates a resource group in which all resources are stored. |
az batch account create | Creates the Batch account. |
az storage account create | Creates a storage account. |
az batch account set | Updates properties of the Batch account. |
az batch account show | Retrieves details of the specified Batch account. |
az batch account keys list | Retrieves the access keys of the specified Batch account. |
az batch account login | Authenticates against the specified Batch account for further CLI interaction. |
az group delete | Deletes a resource group including all nested resources. |
For more information on the Azure CLI, see Azure CLI documentation.