title | description | ms.topic | ms.date | ms.custom | keywords |
---|---|---|---|---|---|
Azure CLI Script Example - Create Batch account - user subscription | Microsoft Docs |
Learn how to create an Azure Batch account in user subscription mode. This account allocates compute nodes into your subscription. |
sample |
05/24/2022 |
devx-track-azurecli, seo-azure-cli |
batch, azure cli samples, azure cli examples, azure cli code samples |
This script creates an Azure Batch account in user subscription mode. An account that allocates compute nodes into your subscription must be authenticated via an Azure Active Directory token. The compute nodes allocated count toward your subscription's vCPU (core) quota.
[!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-user-subscription.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 role assignment create | Create a new role assignment for a user, group, or service principal. |
az group create | Creates a resource group in which all resources are stored. |
az keyvault create | Creates a key vault. |
az keyvault set-policy | Update the security policy of the specified key vault. |
az batch account create | Creates the 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.