diff --git a/modules/container_app_environment_storage/outputs.tf b/modules/container_app_environment_storage/outputs.tf new file mode 100644 index 0000000..69e2e8d --- /dev/null +++ b/modules/container_app_environment_storage/outputs.tf @@ -0,0 +1,3 @@ +output "name" { + value = azurerm_container_app_environment_storage.container_app_environment_storage.name +} \ No newline at end of file diff --git a/modules/storage/outputs.tf b/modules/storage/outputs.tf index fc93505..7498b29 100644 --- a/modules/storage/outputs.tf +++ b/modules/storage/outputs.tf @@ -1,7 +1,11 @@ -output "primary_connection_string" { - value = azurerm_storage_account.storage_account.primary_connection_string -} - output "name" { value = azurerm_storage_account.storage_account.name +} + +output "primary_access_key" { + value = azurerm_storage_account.storage_account.primary_access_key +} + +output "primary_connection_string" { + value = azurerm_storage_account.storage_account.primary_connection_string } \ No newline at end of file