Azure Container Apps - Managed Resources - override Managed resource group name

Baderdien, Muhammed 0 Reputation points
2023-01-12T06:08:18.55+00:00

When you deploy an internal or an external environment into your own network, a new resource group prefixed with MC_ is created in the Azure subscription where your environment is hosted.

Is there a way to override the new resource group name used to host the managed resources?

Azure Container Apps
Azure Container Apps
An Azure service that provides a general-purpose, serverless container platform.
325 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Akram Kathimi 1,046 Reputation points Microsoft Employee
    2023-01-12T09:34:37.1+00:00

    Hi @Baderdien, Muhammed ,

    yes, this is called the node resource group, what you are looking for is documented here.

    In short, use the below command:

    az aks create --name myAKSCluster --resource-group myResourceGroup --node-resource-group myNodeResourceGroup
    
    

    Please "Accept as Answer" if it helped, so that it can help others in the community looking for help on similar topics.