Skip to content

Commit

Permalink
doc/provider/azure/vmss: markdown fix for managed-disk and a few typos (
Browse files Browse the repository at this point in the history
  • Loading branch information
ebrucucen committed May 29, 2017
1 parent 9ec28d2 commit 2d301ee
Showing 1 changed file with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
layout: "azurerm"
page_title: "Azure Resource Manager: azurerm_virtual_machine_scale_sets"
sidebar_current: "docs-azurerm-resource-virtualmachine-scale-sets"
sidebar_current: "docs-azurerm-resource-virtual-machine-scale-sets"
description: |-
Create a Virtual Machine scale set.
---
Expand Down Expand Up @@ -108,7 +108,7 @@ resource "azurerm_virtual_machine_scale_set" "test" {

## Example Usage with Managed Disks

```
```hcl
resource "azurerm_resource_group" "test" {
name = "acctestrg"
location = "West US 2"
Expand Down Expand Up @@ -189,7 +189,7 @@ resource "azurerm_virtual_machine_scale_set" "test" {
}
storage_profile_os_disk {
name = "myosdisk"
name = ""
caching = "ReadWrite"
create_option = "FromImage"
managed_disk_type = "Standard_LRS"
Expand Down Expand Up @@ -327,7 +327,7 @@ The following arguments are supported:

`storage_profile_os_disk` supports the following:

* `name` - (Required) Specifies the disk name.
* `name` - (Required) Specifies the disk name. Should be blank (`""`) when `managed_disk_type` is specified.
* `vhd_containers` - (Optional) Specifies the vhd uri. Cannot be used when `image` or `managed_disk_type` is specified.
* `managed_disk_type` - (Optional) Specifies the type of managed disk to create. Value you must be either `Standard_LRS` or `Premium_LRS`. Cannot be used when `vhd_containers` or `image` is specified.
* `create_option` - (Required) Specifies how the virtual machine should be created. The only possible option is `FromImage`.
Expand All @@ -340,11 +340,10 @@ The following arguments are supported:
`storage_profile_data_disk` supports the following:

* `lun` - (Required) Specifies the Logical Unit Number of the disk in each virtual machine in the scale set.
`Premium_LRS`.
* `create_option` - (Optional) Specifies how the data disk should be created. The only possible options are `FromImage` and `Empty`.
* `caching` - (Optional) Specifies the caching requirements. Possible values include: `None` (default), `ReadOnly`, `ReadWrite`.
* `disk_size_gb` - (Optional) Specifies the size of the disk in GB. This element is required when creating an empty disk.
* `managed_disk_type` - (Optional) Specifies the type of managed disk to create. Value must be either `Standard_LRS` or
* `managed_disk_type` - (Optional) Specifies the type of managed disk to create. Value must be either `Standard_LRS` or `Premium_LRS`.

`storage_profile_image_reference` supports the following:

Expand Down

0 comments on commit 2d301ee

Please sign in to comment.