Skip to content

Commit

Permalink
Adding UltraSSD to list of sku names when creating a managed disk
Browse files Browse the repository at this point in the history
  • Loading branch information
Keboo committed May 15, 2019
1 parent c42a970 commit 7897e70
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions azurerm/resource_arm_managed_disk.go
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,8 @@ func resourceArmManagedDiskCreateUpdate(d *schema.ResourceData, meta interface{}
skuName = compute.StandardLRS
} else if strings.EqualFold(storageAccountType, string(compute.StandardSSDLRS)) {
skuName = compute.StandardSSDLRS
} else if strings.EqualFold(storageAccountType, string(compute.UltraSSDLRS)) {
skuName = compute.UltraSSDLRS
}

createDisk := compute.Disk{
Expand Down

0 comments on commit 7897e70

Please sign in to comment.