Skip to content

Commit 4c6a458

Browse files
committed
feat: add storage_account_primary_blob_endpoint output
1 parent 1c5d847 commit 4c6a458

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -277,6 +277,7 @@ Name | Description
277277
`storage_account_id`|The ID of the storage account
278278
`sorage_account_name`|The name of the storage account
279279
`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
280281
`storage_account_primary_web_endpoint`|The endpoint URL for web storage in the primary location
281282
`storage_account_primary_web_host`|The hostname with port if applicable for web storage in the primary location
282283
`storage_primary_connection_string`|The primary connection string for the storage account

examples/complete/output.tf

+5
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,11 @@ output "storage_account_primary_location" {
2828
value = module.storage.storage_account_primary_location
2929
}
3030

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+
3136
output "storage_account_primary_web_endpoint" {
3237
description = "The endpoint URL for web storage in the primary location."
3338
value = module.storage.storage_account_primary_web_endpoint

output.tf

+5
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,11 @@ output "storage_account_primary_location" {
2828
value = azurerm_storage_account.storeacc.primary_location
2929
}
3030

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+
3136
output "storage_account_primary_web_endpoint" {
3237
description = "The endpoint URL for web storage in the primary location."
3338
value = azurerm_storage_account.storeacc.primary_web_endpoint

0 commit comments

Comments
 (0)