diff --git a/azurerm/resource_arm_storage_share.go b/azurerm/resource_arm_storage_share.go index d0f2834ac733..005e2c147c50 100644 --- a/azurerm/resource_arm_storage_share.go +++ b/azurerm/resource_arm_storage_share.go @@ -59,7 +59,7 @@ func resourceArmStorageShare() *schema.Resource { Type: schema.TypeInt, Optional: true, Default: 5120, - ValidateFunc: validation.IntBetween(1, 5120), + ValidateFunc: validation.IntBetween(1, 102400), }, "metadata": storage.MetaDataSchema(), diff --git a/website/docs/r/storage_share.html.markdown b/website/docs/r/storage_share.html.markdown index 489e22c1679c..c105491ab63a 100644 --- a/website/docs/r/storage_share.html.markdown +++ b/website/docs/r/storage_share.html.markdown @@ -44,7 +44,7 @@ The following arguments are supported: * `acl` - (Optional) One or more `acl` blocks as defined below. -* `quota` - (Optional) The maximum size of the share, in gigabytes. Must be greater than 0, and less than or equal to 5 TB (5120 GB). Default is 5120. +* `quota` - (Optional) The maximum size of the share, in gigabytes. Must be greater than 0, and less than or equal to 5 TB (5120 GB) for Standard storage accounts or 100 TB (102400 GB) for Premium storage accounts. Default is 5120. * `metadata` - (Optional) A mapping of MetaData for this File Share.