Files
2026-02-20 08:18:05 +01:00

12 lines
266 B
HCL

output "storage_account_id" {
value = azurerm_storage_account.this.id
}
output "storage_account_name" {
value = azurerm_storage_account.this.name
}
output "container_names" {
value = [for container in azurerm_storage_container.containers : container.name]
}