File tree 3 files changed +11
-0
lines changed
3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -277,6 +277,7 @@ Name | Description
277
277
` storage_account_id ` |The ID of the storage account
278
278
` sorage_account_name ` |The name of the storage account
279
279
` storage_account_primary_location ` |The primary location of the storage account
280
+ ` storage_account_primary_blob_endpoint ` |The endpoint URL for blob storage in the primary location
280
281
` storage_account_primary_web_endpoint ` |The endpoint URL for web storage in the primary location
281
282
` storage_account_primary_web_host ` |The hostname with port if applicable for web storage in the primary location
282
283
` storage_primary_connection_string ` |The primary connection string for the storage account
Original file line number Diff line number Diff line change @@ -28,6 +28,11 @@ output "storage_account_primary_location" {
28
28
value = module. storage . storage_account_primary_location
29
29
}
30
30
31
+ output "storage_account_primary_blob_endpoint" {
32
+ description = " The endpoint URL for blob storage in the primary location."
33
+ value = module. storage . storage_account_primary_blob_endpoint
34
+ }
35
+
31
36
output "storage_account_primary_web_endpoint" {
32
37
description = " The endpoint URL for web storage in the primary location."
33
38
value = module. storage . storage_account_primary_web_endpoint
Original file line number Diff line number Diff line change @@ -28,6 +28,11 @@ output "storage_account_primary_location" {
28
28
value = azurerm_storage_account. storeacc . primary_location
29
29
}
30
30
31
+ output "storage_account_primary_blob_endpoint" {
32
+ description = " The endpoint URL for blob storage in the primary location."
33
+ value = azurerm_storage_account. storeacc . primary_blob_endpoint
34
+ }
35
+
31
36
output "storage_account_primary_web_endpoint" {
32
37
description = " The endpoint URL for web storage in the primary location."
33
38
value = azurerm_storage_account. storeacc . primary_web_endpoint
You can’t perform that action at this time.
0 commit comments