What is the problem you're trying to solve
We publish transient images to a location like <registry>.azurecr.io/appname/temp/runtime:latest
When they get promoted to production we retag the image to <registry>.azurecr.io/appname/runtime:latest using az acr import since the images are large (15GB or so). With ABAC we can lock down docker push/pull/etc to the /appname/* repo, but we can't do that with import. The docker pull cycle is very long due to image size so we would prefer to use az acr import
Describe the solution you'd like
az acr import should be abac aware.