-
Notifications
You must be signed in to change notification settings - Fork 17
/
outputs.tf
44 lines (36 loc) · 1.16 KB
/
outputs.tf
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 "resource" {
description = "Storage Account resource object."
value = azurerm_storage_account.main
}
output "id" {
description = "Storage Account ID."
value = azurerm_storage_account.main.id
}
output "name" {
description = "Storage Account name."
value = azurerm_storage_account.main.name
}
output "identity_principal_id" {
description = "Storage Account system identity principal ID."
value = try(azurerm_storage_account.main.identity[0].principal_id, null)
}
output "module_diagnostics" {
description = "Diagnostics settings module outputs."
value = module.diagnostics
}
output "resource_blob_containers" {
description = "Created blob containers in the Storage Account."
value = azurerm_storage_container.main
}
output "resource_file_shares" {
description = "Created file shares in the Storage Account."
value = azurerm_storage_share.main
}
output "resource_tables" {
description = "Created tables in the Storage Account."
value = azurerm_storage_table.main
}
output "resource_queues" {
description = "Created queues in the Storage Account."
value = azurerm_storage_queue.main
}