Containers (1 / 61): You are working with a resource group, MultiContainerGroup1, which contains several services such as Azure Functions, a CosmosDB instance, and multiple container instances. You need to export this resource group for future deployment. Write the Azure CLI command to export the template for this resource group.
Answer:
You should use a Resource Manager (ARM) template because this format allows the inclusion of multiple Azure services along with the container instances.
az group export --name MultiContainerGroup1 --output-template-file "./MultiContainerGroup1.json"
az deployment group create --resource-group MultiContainerGroup1 --template-file "./MultiContainerGroup1.json"