Skip to content
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.
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
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