Im trying to create a web app using REST API. but all the time im facing some issue.
Even though I was able to create a plain web app but not what I wanted. Why isn't there a proper documentation for it.
https://management.azure.com/subscriptions/${subscriptionId}/resourceGroups/${resourceGroupName}/providers/Microsoft.Web/sites/${resourceGroupName}?api-version=2019-08-01
body of the request.
the response im getting is a plain webapp with default plan.
"type": "Microsoft.Web/sites",
"kind": "app",
"location": "West US",
"properties": [
{
"name": "LinuxFxVersion",
"value": ""
},
{
"name": "WindowsFxVersion",
"value": null
}
],
"appSettings": null
the image which i have mentioned is also missing.
is there proper way to define all the configs? or a good document to read. (other than this https://learn.microsoft.com/en-us/rest/api/appservice/webapps/).
any help is appreciated.
My goal is to create a webapp (windows, container) or (linux, container)