From 4a192deedab2dd5a15d06ada9bd6338d8985f0c3 Mon Sep 17 00:00:00 2001 From: Noah Spannbauer Date: Sat, 23 Aug 2025 20:30:10 -0500 Subject: [PATCH] updating modules --- modules/container_app/container_app.tf | 2 +- modules/container_app/variables.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/container_app/container_app.tf b/modules/container_app/container_app.tf index 5ea2c1f..1d2e956 100644 --- a/modules/container_app/container_app.tf +++ b/modules/container_app/container_app.tf @@ -83,8 +83,8 @@ resource "azurerm_container_app" "container_app_app" { iterator = volume content { name = volume.value.name + share_name = value.value.share_name storage_type = volume.value.storage_type - storage_name = volume.value.storage_name } } } diff --git a/modules/container_app/variables.tf b/modules/container_app/variables.tf index d69a454..14dd050 100644 --- a/modules/container_app/variables.tf +++ b/modules/container_app/variables.tf @@ -142,7 +142,7 @@ variable "volume" { default = [] type = list(object({ name = string - storage_type = string share_name = string + storage_type = string })) } \ No newline at end of file