48 lines
718 B
HCL
48 lines
718 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_blobs" {
|
|
default = []
|
|
type = list(object({
|
|
name = string,
|
|
storage_container_name = string,
|
|
type = string,
|
|
content_type = string,
|
|
source = string
|
|
}))
|
|
}
|
|
|
|
variable "storage_containers" {
|
|
default = []
|
|
type = list(string)
|
|
}
|
|
|
|
variable "storage_queues" {
|
|
default = []
|
|
type = list(string)
|
|
}
|
|
|
|
variable "storage_shares" {
|
|
default = []
|
|
type = list(string)
|
|
}
|
|
|
|
variable "storage_tables" {
|
|
default = []
|
|
type = list(string)
|
|
} |