You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: includes/virtual-machines-using-managed-disks-template-deployments.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -91,13 +91,13 @@ With Azure Managed Disks, the disk becomes a top-level resource and no longer re
91
91
92
92
### Default managed disk settings
93
93
94
-
To create a VM with managed disks, you no longer need to create the storage account resource. Referencing the template example below, thare are some differences from the previous unmanged disk examples to note:
94
+
To create a VM with managed disks, you no longer need to create the storage account resource. Referencing the template example below, there are some differences from the previous unmanged disk examples to note:
95
95
96
96
- The `apiVersion` is a version that supports managed disks.
97
97
-`osDisk` and `dataDisks` no longer refer to a specific URI for the VHD.
98
-
- When deploying without specifying additional properties, the disk will use a storage type based on the size of the VM. For example, if you are using a VM size that supports premium storage (sizes with "s" in their name such as Standard_D2s_v3) then premium disks will be confiugred by defaul. You can change this by using the sku setting of the disk to specify a storage type.
98
+
- When deploying without specifying additional properties, the disk will use a storage type based on the size of the VM. For example, if you are using a VM size that supports premium storage (sizes with "s" in their name such as Standard_D2s_v3) then premium disks will be configured by default. You can change this by using the sku setting of the disk to specify a storage type.
99
99
- If no name for the disk is specified, it takes the format of `<VMName>_OsDisk_1_<randomstring>` for the OS disk and `<VMName>_disk<#>_<randomstring>` for each data disk.
100
-
- If a VM is being created from a custom image then the default settings for storage account type and disk name are retrieved from the disk properties defined in the custom image resource. These can be overriden by specifying values for these in the template.
100
+
- If a VM is being created from a custom image then the default settings for storage account type and disk name are retrieved from the disk properties defined in the custom image resource. These can be overridden by specifying values for these in the template.
101
101
- By default, Azure disk encryption is disabled.
102
102
- By default, disk caching is Read/Write for the OS disk and None for data disks.
103
103
- In the example below there is still a storage account dependency, though this is only for storage of diagnostics and is not needed for disk storage.
0 commit comments