Microsoft.Web sites/instances/extensions 2020-09-01
The sites/instances/extensions resource type can be deployed to: Resource groups.
To learn about resource group deployments, see Bicep or ARM template.
Template format
To create a Microsoft.Web/sites/instances/extensions resource, add the following Bicep or JSON to your template.
resource symbolicname 'Microsoft.Web/sites/instances/extensions@2020-09-01' = {
name: 'MSDeploy'
kind: 'string'
parent: resourceSymbolicName
properties: {
appOffline: bool
connectionString: 'string'
dbType: 'string'
packageUri: 'string'
setParameters: {}
setParametersXmlFileUri: 'string'
skipAppData: bool
}
}
Property values
sites/instances/extensions
| Name | Description | Value |
|---|---|---|
| type | The resource type For Bicep, set this value in the resource declaration. |
'Microsoft.Web/sites/instances/extensions' |
| apiVersion | The resource api version For Bicep, set this value in the resource declaration. |
'2020-09-01' |
| name | The resource name See how to set names and types for child resources in Bicep or JSON ARM templates. |
'MSDeploy' |
| kind | Kind of resource. | string |
| parent | In Bicep, you can specify the parent resource for a child resource. You only need to add this property when the child resource is declared outside of the parent resource. For more information, see Child resource outside parent resource. |
Symbolic name for resource of type: instances |
| properties | MSDeploy ARM PUT core information | MSDeployCore |
MSDeployCore
| Name | Description | Value |
|---|---|---|
| appOffline | Sets the AppOffline rule while the MSDeploy operation executes. Setting is false by default. |
bool |
| connectionString | SQL Connection String | string |
| dbType | Database Type | string |
| packageUri | Package URI | string |
| setParameters | MSDeploy Parameters. Must not be set if SetParametersXmlFileUri is used. | object |
| setParametersXmlFileUri | URI of MSDeploy Parameters file. Must not be set if SetParameters is used. | string |
| skipAppData | Controls whether the MSDeploy operation skips the App_Data directory. If set to true, the existing App_Data directory on the destinationwill not be deleted, and any App_Data directory in the source will be ignored. Setting is false by default. |
bool |