Skip to content

Commit

Permalink
fix formatting and typos
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-goncharov committed Jul 13, 2020
1 parent 6df61d9 commit ef48912
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -930,10 +930,10 @@ resource "azurerm_storage_account" "test" {
name = "unlikely23exst2acct%s"
resource_group_name = azurerm_resource_group.test.name
location = azurerm_resource_group.test.location
account_tier = "Standard"
account_replication_type = "LRS"
allow_blob_public_access = true
location = azurerm_resource_group.test.location
account_tier = "Standard"
account_replication_type = "LRS"
allow_blob_public_access = true
tags = {
environment = "production"
Expand All @@ -957,10 +957,10 @@ resource "azurerm_storage_account" "test" {
name = "unlikely23exst2acct%s"
resource_group_name = azurerm_resource_group.test.name
location = azurerm_resource_group.test.location
account_tier = "Standard"
account_replication_type = "LRS"
allow_blob_public_access = false
location = azurerm_resource_group.test.location
account_tier = "Standard"
account_replication_type = "LRS"
allow_blob_public_access = false
tags = {
environment = "production"
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/storage_account.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ The following arguments are supported:

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

* `allow_blob_public_access` = (Optional) Boolean flag wich disallows blobs to be confiured for public access. Enabling it does not allow public access to the blobs directly, each blob still need to be configured to allow public access. Setting this to false will remove all public access from the blobs does not matter per-blob configuration. Defaults to `true`
* `allow_blob_public_access` = (Optional) Boolean flag which disallows blobs to be confiured for public access. Enabling it does not allow public access to the blobs directly, each blob still need to be configured to allow public access. Setting this to false will remove all public access from the blobs does not matter per-blob configuration. Defaults to `true`

* `enable_https_traffic_only` - (Optional) Boolean flag which forces HTTPS if enabled, see [here](https://docs.microsoft.com/en-us/azure/storage/storage-require-secure-transfer/)
for more information. Defaults to `true`.
Expand Down

0 comments on commit ef48912

Please sign in to comment.