Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions infrastructure/modules/storage/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ resource "azurerm_storage_account" "storage_account" {
account_replication_type = var.account_replication_type
account_tier = var.account_tier
public_network_access_enabled = var.public_network_access_enabled
access_tier = var.access_tier

tags = var.tags

Expand Down
8 changes: 8 additions & 0 deletions infrastructure/modules/storage/tfdocs.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,14 @@ Type: `string`

Default: `"Standard"`

### <a name="input_access_tier"></a> [access\_tier](#input\_access\_tier)

Description: Defines the access tier for BlobStorage, FileStorage and StorageV2 accounts. Valid options are Hot, Cool, Cold and Premium. Defaults to Hot.

Type: `string`

Default: `"Hot"`

### <a name="input_action_group_id"></a> [action\_group\_id](#input\_action\_group\_id)

Description: ID of the action group to notify.
Expand Down
6 changes: 6 additions & 0 deletions infrastructure/modules/storage/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@ variable "account_tier" {
default = "Standard"
}

variable "access_tier" {
type = string
description = "Defines the access tier for BlobStorage, FileStorage and StorageV2 accounts. Valid options are Hot, Cool, Cold and Premium."
default = "Hot"
}

variable "blob_properties_delete_retention_policy" {
type = number
description = "The value set for blob properties delete retention policy."
Expand Down
Loading