Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

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
 [--acquire-policy-token]
 [--change-reference]
 [--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

--name -n

The name of the token.

--registry -r

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

The following parameters are optional, but depending on the context, one or more might become required for the command to execute successfully.

--acquire-policy-token

Acquiring an Azure Policy token automatically for this resource operation.

Property Value
Parameter group: Global Policy Arguments
--change-reference

The related change reference ID for this resource operation.

Property Value
Parameter group: Global Policy Arguments
--password1

Flag indicating if first password should be deleted.

Property Value
Default value: False
--password2

Flag indicating if second password should be deleted.

Property Value
Default value: False
--resource-group -g

Name of resource group. You can configure the default group using az configure --defaults group=<name>.

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
 [--acquire-policy-token]
 [--change-reference]
 [--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

--name -n

The name of the token.

--registry -r

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

The following parameters are optional, but depending on the context, one or more might become required for the command to execute successfully.

--acquire-policy-token

Acquiring an Azure Policy token automatically for this resource operation.

Property Value
Parameter group: Global Policy Arguments
--change-reference

The related change reference ID for this resource operation.

Property Value
Parameter group: Global Policy Arguments
--expiration

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.

--expiration-in-days

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".

--password1

Flag indicating if password1 should be generated.

Property Value
Default value: False
--password2

Flag indicating if password2 should be generated.

Property Value
Default value: False
--resource-group -g

Name of resource group. You can configure the default group using az configure --defaults group=<name>.


Feedback

Was this page helpful?