updating modules

This commit is contained in:
2025-08-23 20:30:10 -05:00
parent 15f004e06c
commit 4a192deeda
2 changed files with 2 additions and 2 deletions

View File

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

View File

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