Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

like image 523
lorenzo Avatar asked Jun 15 '20 21:06

lorenzo


People also ask

What is the maximum parameters allowed in an ARM template?

In the parameters section of the template, you specify which values you can input when deploying the resources. You're limited to 256 parameters in a template. You can reduce the number of parameters by using objects that contain multiple properties. Name of the parameter.

What are parameters in ARM template?

Parameters allow you to pass different values to the ARM template for use during the deployment. Some common examples include names of resources or which Azure region to host them. Parameters enable your templates to be more dynamic and used across different environments.

What data format are ARM templates created in?

Azure Resource Manager templates are JavaScript Object Notation (JSON) files that define the infrastructure and configuration for your project.


1 Answers

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

like image 88
Joy Wang Avatar answered Sep 16 '22 20:09

Joy Wang