Microsoft.ContainerRegistry registries/cacheRules

ARM template resource definition

The registries/cacheRules resource type can be deployed with operations that target:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.ContainerRegistry/registries/cacheRules resource, add the following JSON to your template.

{
  "type": "Microsoft.ContainerRegistry/registries/cacheRules",
  "apiVersion": "2023-01-01-preview",
  "name": "string",
  "properties": {
    "credentialSetResourceId": "string",
    "sourceRepository": "string",
    "targetRepository": "string"
  }
}

Property values

registries/cacheRules

Name Description Value
type The resource type 'Microsoft.ContainerRegistry/registries/cacheRules'
apiVersion The resource api version '2023-01-01-preview'
name The resource name

See how to set names and types for child resources in JSON ARM templates.
string (required)
properties The properties of the cache rule. CacheRuleProperties

CacheRuleProperties

Name Description Value
credentialSetResourceId The ARM resource ID of the credential store which is associated with the cache rule. string
sourceRepository Source repository pulled from upstream. string
targetRepository Target repository specified in docker pull command.
Eg: docker pull myregistry.azurecr.io/{targetRepository}:{tag}

string