7
votes

Does anyone know what the possible values are for kind on a Microsoft.Web/sites object in an Azure Resource Manager template?

There is no indication what the valid values are, only that it is a string.

https://docs.microsoft.com/en-us/azure/templates/microsoft.web/2019-08-01/sites

1

1 Answers

14
votes

There are five possible values, they are api, app, app,linux, functionapp, functionapp,linux.

Meaning:

api - api app

app - windows web app

app,linux - linux web app

functionapp - windows function app

functionapp,linux - linux function app


You could easily check it in the portal -> App Services -> Add filter -> Kind.

enter image description here

If you are curious, you can also create one and check it in the resource explorer, it will be like below.

enter image description here