CLI example: Create a Batch account in user subscription mode
This script creates an Azure Batch account in user subscription mode. An account that allocates compute nodes into your subscription must be authenticated via a Microsoft Entra token. The compute nodes allocated count toward your subscription's vCPU (core) quota.
If you don't have an Azure trial subscription, create an Azure trial subscription before you begin.
If you prefer to run CLI reference commands locally, install the Azure CLI. If you're running on Windows or macOS, consider running Azure CLI in a Docker container. For more information, see How to run the Azure CLI in a Docker container.
If you're using a local installation, sign in to the Azure CLI by using the az login command. To finish the authentication process, follow the steps displayed in your terminal. For other sign-in options, see Sign in with the Azure CLI.
When you're prompted, install the Azure CLI extension on first use. For more information about extensions, see Use extensions with the Azure CLI.
Run az version to find the version and dependent libraries that are installed. To upgrade to the latest version, run az upgrade.
#!/bin/bash
# Allow Azure Batch to access the subscription (one-time operation).
az role assignment create \
--assignee MicrosoftAzureBatch \
--role contributor
# Create a resource group.
az group create --name myResourceGroup --location chinanorth
# Create an Azure Key Vault. A Batch account that allocates pools in the user's subscription
# must be configured with a Key Vault located in the same region.
az keyvault create \
--resource-group myResourceGroup \
--name mykevault \
--location chinanorth \
--enabled-for-deployment true \
--enabled-for-disk-encryption true \
--enabled-for-template-deployment true
# Add an access policy to the Key Vault to allow access by the Batch Service.
az keyvault set-policy \
--resource-group myResourceGroup \
--name mykevault \
--spn ddbf3205-c6bd-46ae-8127-60eb93363864 \
--key-permissions all \
--secret-permissions all
# Create the Batch account, referencing the Key Vault either by name (if they
# exist in the same resource group) or by its full resource ID.
az batch account create \
--resource-group myResourceGroup \
--name mybatchaccount \
--location chinanorth \
--keyvault mykevault
# Authenticate directly against the account for further CLI interaction.
# Batch accounts that allocate pools in the user's subscription must be
# authenticated via an Microsoft Entra ID token.
az batch account login -g myResourceGroup -n mybatchaccount
Use the following command to remove the resource group and all resources associated with it using the az group delete command - unless you have an ongoing need for these resources. Some of these resources may take a while to create, as well as to delete.
az group delete --name myResourceGroup
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.