How to find resource properties using azure resource manager

How can I see the configuration of a resource in a resource group? I provided the database through the portal, and I would like to see what kind of configuration is in the template language.

+1
source share
1 answer

You can use the Azure Resource Manager REST API to display template deployments for your resource group. API link here .

At the top of the answer is templateLink , with which you can get the deployment template. For example, this is what I return for one of my deployments, where I used the Web App + SQL database configuration with the Azure Portal to create a new web application.

enter image description here

+1
source

All Articles