Skip to content

Latest commit

 

History

History
50 lines (34 loc) · 2.42 KB

batch-cli-sample-create-user-subscription-account.md

File metadata and controls

50 lines (34 loc) · 2.42 KB
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

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 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]

Sample script

[!INCLUDE cli-launch-cloud-shell-sign-in.md]

Run the script

:::code language="azurecli" source="~/azure_cli_scripts/batch/create-account/create-account-user-subscription.sh" id="FullScript":::

Clean up resources

[!INCLUDE cli-clean-up-resources.md]

az group delete --name $resourceGroup

Sample reference

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.

Next steps

For more information on the Azure CLI, see Azure CLI documentation.