Skip to content

Commit

Permalink
Adding UltraSSD to list of sku names when creating a managed disk (#3453
Browse files Browse the repository at this point in the history
)
  • Loading branch information
Keboo authored and katbyte committed May 16, 2019
1 parent c5a5017 commit 44d8087
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 44d8087

Please sign in to comment.