Added module code.

This commit is contained in:
2026-02-20 08:18:05 +01:00
parent cb7a745b19
commit ba7be7d8d9
5 changed files with 157 additions and 0 deletions

11
outputs.tf Normal file
View File

@@ -0,0 +1,11 @@
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]
}