adding storage blob to storage account

This commit is contained in:
2025-04-15 20:04:45 -05:00
parent a483cfc7ad
commit b0d43ee51a
2 changed files with 20 additions and 0 deletions

View File

@@ -16,6 +16,17 @@ 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)