updating modules

This commit is contained in:
2025-08-23 20:37:51 -05:00
parent eee6a0d9e0
commit 38abb40240
2 changed files with 2 additions and 0 deletions

View File

@@ -83,6 +83,7 @@ resource "azurerm_container_app" "container_app_app" {
iterator = volume
content {
name = volume.value.name
storage_name = volumn.value.storage_name
storage_type = volume.value.storage_type
}
}

View File

@@ -142,6 +142,7 @@ variable "volume" {
default = []
type = list(object({
name = string
storage_name = string
storage_type = string
}))
}