11 lines
290 B
HCL
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
|
|
} |