forked from claranet/terraform-azurerm-storage-account
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutputs.tf
More file actions
44 lines (36 loc) · 1.28 KB
/
Copy pathoutputs.tf
File metadata and controls
44 lines (36 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
output "storage_account_properties" {
description = "Created Storage Account properties"
value = azurerm_storage_account.storage
}
output "storage_account_id" {
description = "Created Storage Account ID"
value = azurerm_storage_account.storage.id
}
output "storage_account_name" {
description = "Created Storage Account name"
value = azurerm_storage_account.storage.name
}
output "storage_account_identity" {
description = "Created Storage Account identity block"
value = azurerm_storage_account.storage.identity
}
output "storage_account_network_rules" {
description = "Network rules of the associated Storage Account"
value = one(azurerm_storage_account_network_rules.network_rules[*])
}
output "storage_blob_containers" {
description = "Created blob containers in the Storage Account"
value = azurerm_storage_container.container
}
output "storage_file_shares" {
description = "Created file shares in the Storage Account"
value = azurerm_storage_share.share
}
output "storage_file_tables" {
description = "Created tables in the Storage Account"
value = azurerm_storage_table.table
}
output "storage_file_queues" {
description = "Created queues in the Storage Account"
value = azurerm_storage_queue.queue
}