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

32 lines
454 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_containers" {
default = []
type = list(string)
}
variable "storage_queues" {
default = []
type = list(string)
}
variable "storage_tables" {
default = []
type = list(string)
}