Search code examples
azureazure-resource-manager

ARM Microsoft.Web/sites "kind" Possible Values


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://learn.microsoft.com/en-us/azure/templates/microsoft.web/2019-08-01/sites


Solution

  • 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