Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

azurerm_storage_account - Support RAGZRS and GZRS account_replication_type #7080

Merged
merged 3 commits into from May 28, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -95,6 +95,8 @@ func resourceArmStorageAccount() *schema.Resource {
"ZRS",
"GRS",
"RAGRS",
"GZRS",
"RAGZRS",
lrxtom2 marked this conversation as resolved.
Show resolved Hide resolved
}, true),
DiffSuppressFunc: suppress.CaseDifference,
},
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/storage_account.html.markdown
Expand Up @@ -90,7 +90,7 @@ The following arguments are supported:

* `account_tier` - (Required) Defines the Tier to use for this storage account. Valid options are `Standard` and `Premium`. For `FileStorage` accounts only `Premium` is valid. Changing this forces a new resource to be created.

* `account_replication_type` - (Required) Defines the type of replication to use for this storage account. Valid options are `LRS`, `GRS`, `RAGRS` and `ZRS`.
* `account_replication_type` - (Required) Defines the type of replication to use for this storage account. Valid options are `LRS`, `GRS`, `RAGRS`, `ZRS`, `GZRS`, `RAGZRS`.
lrxtom2 marked this conversation as resolved.
Show resolved Hide resolved

* `access_tier` - (Optional) Defines the access tier for `BlobStorage`, `FileStorage` and `StorageV2` accounts. Valid options are `Hot` and `Cool`, defaults to `Hot`.

Expand Down