You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi we would like to attach an ACR isntance to a cluster, both at creation time or as an update as per these docs.
It would be nice if the module would support both these use cases:
Create a new AKS cluster with ACR integration
# set this to the name of your Azure Container Registry. It must be globally unique
MYACR=myContainerRegistry
# Run the following line to create an Azure Container Registry if you do not already have one
az acr create -n $MYACR -g myContainerRegistryResourceGroup --sku basic
# Create an AKS cluster with ACR integration
az aks create -n myAKSCluster -g myResourceGroup --generate-ssh-keys --attach-acr $MYACR
Configure ACR integration for existing AKS clusters
az aks update -n myAKSCluster -g myResourceGroup --attach-acr <acr-name>
I've recently seen an uptick in ACR usage so this might be something you would want to prioritize. I haven't checked if the terraform provider already supports this.
The text was updated successfully, but these errors were encountered:
Hi we would like to attach an ACR isntance to a cluster, both at creation time or as an update as per these docs.
It would be nice if the module would support both these use cases:
I've recently seen an uptick in ACR usage so this might be something you would want to prioritize. I haven't checked if the terraform provider already supports this.
The text was updated successfully, but these errors were encountered: