az acr token credential
Manage credentials of a token for an Azure Container Registry.
Commands
Name | Description | Type | Status |
---|---|---|---|
az acr token credential delete |
Delete a token credential. |
Core | GA |
az acr token credential generate |
Generate or replace one or both passwords of a token for an Azure Container Registry. For using token and password to access a container registry, see https://aka.ms/acr/repo-permissions. |
Core | GA |
az acr token credential delete
Delete a token credential.
az acr token credential delete --name
--registry
[--password1]
[--password2]
[--resource-group]
Examples
Delete both passwords for the token 'MyToken'.
az acr token credential delete -n MyToken -r myregistry --password1 --password2
Required Parameters
The name of the token.
The name of the container registry. It should be specified in lower case. You can configure the default registry name using az configure --defaults acr=<registry name>
.
Optional Parameters
Flag indicating if first password should be deleted.
Flag indicating if second password should be deleted.
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
Global Parameters
Increase logging verbosity to show all debug logs.
Show this help message and exit.
Only show errors, suppressing warnings.
Output format.
JMESPath query string. See http://jmespath.org/ for more information and examples.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Increase logging verbosity. Use --debug for full debug logs.
az acr token credential generate
Generate or replace one or both passwords of a token for an Azure Container Registry. For using token and password to access a container registry, see https://aka.ms/acr/repo-permissions.
az acr token credential generate --name
--registry
[--expiration]
[--expiration-in-days]
[--password1]
[--password2]
[--resource-group]
Examples
Generate password1 for the token 'MyToken', with an expiration of 30 days.
az acr token credential generate -n MyToken -r myregistry --password1 --days 30
Required Parameters
The name of the token.
The name of the container registry. It should be specified in lower case. You can configure the default registry name using az configure --defaults acr=<registry name>
.
Optional Parameters
UTC time for which the credentials will be valid. In the format of %Y-%m-%dT%H:%M:%SZ, e.g. 2025-12-31T12:59:59Z.
Number of days for which the credentials will be valid. If not specified, the expiration will default to the max value "9999-12-31T23:59:59.999999+00:00".
Flag indicating if password1 should be generated.
Flag indicating if password2 should be generated.
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
Global Parameters
Increase logging verbosity to show all debug logs.
Show this help message and exit.
Only show errors, suppressing warnings.
Output format.
JMESPath query string. See http://jmespath.org/ for more information and examples.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Increase logging verbosity. Use --debug for full debug logs.