From f52879535006aebd603155ca82c718fb9f164709 Mon Sep 17 00:00:00 2001 From: Noah Spannbauer Date: Wed, 19 Mar 2025 09:57:52 -0500 Subject: [PATCH] adding optional storage containers to storage module --- modules/storage/variables.tf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/storage/variables.tf b/modules/storage/variables.tf index 9d59aa1..037f895 100644 --- a/modules/storage/variables.tf +++ b/modules/storage/variables.tf @@ -16,6 +16,11 @@ variable "storage_account_name" { type = string } +variable "storage_containers" { + default = [] + type = list(string) +} + variable "storage_queues" { default = [] type = list(string)