Files
noahspan-terraform/modules/storage/variables.tf

27 lines
382 B
HCL

variable "account_replication_type" {
default = "LRS"
type = string
}
variable "account_tier" {
default = "Standard"
type = string
}
variable "resource_group_name" {
type = string
}
variable "storage_account_name" {
type = string
}
variable "storage_queues" {
default = []
type = list(string)
}
variable "storage_tables" {
default = []
type = list(string)
}