From 9246ed055ec271fbab2881d831e54d87463ead50 Mon Sep 17 00:00:00 2001 From: anmolhuro Date: Mon, 27 Mar 2023 23:01:03 +0530 Subject: [PATCH] output of primary blob endpoint is been added --- outputs.tf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/outputs.tf b/outputs.tf index a6d1a93..a153bd0 100644 --- a/outputs.tf +++ b/outputs.tf @@ -27,6 +27,11 @@ output "default_storage_account_primary_web_endpoint" { description = "The endpoint URL for web storage in the primary location." } +output "default_storage_account_primary_blob_endpoint" { + value = join("", azurerm_storage_account.default_storage.*.primary_blob_endpoint) + description = "The endpoint URL for blob storage in the primary location." +} + output "default_storage_account_primary_web_host" { value = join("", azurerm_storage_account.default_storage.*.primary_web_host) description = "The hostname with port if applicable for web storage in the primary location."