Files
noahspan-terraform/modules/storage/outputs.tf
2025-08-23 22:31:01 -05:00

11 lines
290 B
HCL

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
}