Skip to content

Commit

Permalink
Upped Storage share limit to 100TB; updated docs (#4054)
Browse files Browse the repository at this point in the history
  • Loading branch information
nexxai authored and katbyte committed Aug 10, 2019
1 parent 0ac50f3 commit 5c92edd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion azurerm/resource_arm_storage_share.go
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/storage_share.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down

0 comments on commit 5c92edd

Please sign in to comment.