Microsoft.Compute virtualMachineScaleSets/extensions 2017-03-30
Template format
To create a Microsoft.Compute/virtualMachineScaleSets/extensions resource, add the following JSON to the resources section of your template.
{
"name": "string",
"type": "Microsoft.Compute/virtualMachineScaleSets/extensions",
"apiVersion": "2017-03-30",
"properties": {
"publisher": "string",
"type": "string",
"typeHandlerVersion": "string",
"autoUpgradeMinorVersion": "boolean",
"settings": {},
"protectedSettings": {}
}
}
Property values
The following tables describe the values you need to set in the schema.
Microsoft.Compute/virtualMachineScaleSets/extensions object
Name | Type | Required | Value |
---|---|---|---|
name | string | Yes | The name of the virtual machine extension. |
type | enum | Yes | extensions -or- Microsoft.Compute/virtualMachineScaleSets/extensions See Set name and type for child resources. |
apiVersion | enum | Yes | 2017-03-30 |
properties | object | Yes | VirtualMachineScaleSetExtensionProperties object |
VirtualMachineScaleSetExtensionProperties object
Name | Type | Required | Value |
---|---|---|---|
publisher | string | No | The name of the extension handler publisher. |
type | string | No | Specifies the type of the extension; an example is "CustomScriptExtension". |
typeHandlerVersion | string | No | Specifies the version of the script handler. |
autoUpgradeMinorVersion | boolean | No | Indicates whether the extension should use a newer minor version if one is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless redeployed, even with this property set to true. |
settings | object | No | Json formatted public settings for the extension. |
protectedSettings | object | No | The extension can contain either protectedSettings or protectedSettingsFromKeyVault or no protected settings at all. |
Quickstart templates
The following quickstart templates deploy this resource type.
Template | Description |
---|---|
This template decrypts previously encrypted Windows VMSS |
This template disables encryption on a running Windows VM Scale Set |
This template encrypts a running Windows VMSS |
This template enables encryption on a running Windows VM Scale Set |