REST API : List all Azure ARM Templates using REST API -
in azure arm portal, have predefined , working azure arm templates. unable find rest api retrieve azure arm templates. let me know if have rest api same. want know these templates stored under storage account ?
but unable find rest api retrieve azure arm templates
we can retrieve azure arm templates in resource group. following way it.
method , url.
post https://management.azure.com/subscriptions/{subscription-id}/resourcegroups/{resourcegroup-name}/exporttemplate?api-version=2017-05-10
sample request headers:
host: management.azure.com authorization: bearer your-token content-type: application/json
sample request body:
{ "resources": [ "*" ], "options": "includeparameterdefaultvalue, includecomments" }
also want know these templates stored under storage account ?
it not announced whether these templates stored under storage account or not.
Comments
Post a Comment