forked from Umanis/terraform-azurerm-storage-account
-
Notifications
You must be signed in to change notification settings - Fork 0
/
output.tf
104 lines (84 loc) · 3.55 KB
/
output.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
output "storage_account_id" {
description = "The ID of the storage account."
value = azurerm_storage_account.self.id
}
output "storage_account_name" {
description = "The name of the storage account."
value = azurerm_storage_account.self.name
}
output "storage_account_primary_location" {
description = "The primary location of the storage account"
value = azurerm_storage_account.self.primary_location
}
output "storage_account_primary_web_endpoint" {
description = "The endpoint URL for web storage in the primary location."
value = azurerm_storage_account.self.primary_web_endpoint
}
output "storage_account_primary_web_host" {
description = "The hostname with port if applicable for web storage in the primary location."
value = azurerm_storage_account.self.primary_web_host
}
output "storage_primary_connection_string" {
description = "The primary connection string for the storage account"
value = azurerm_storage_account.self.primary_connection_string
sensitive = true
}
output "storage_account_secondary_location" {
description = "The secondary location of the storage account"
value = azurerm_storage_account.self.secondary_location
}
output "storage_account_secondary_web_endpoint" {
description = "The endpoint URL for web storage in the secondary location."
value = azurerm_storage_account.self.secondary_web_endpoint
}
output "storage_account_secondary_web_host" {
description = "The hostname with port if applicable for web storage in the secondary location."
value = azurerm_storage_account.self.secondary_web_host
}
output "storage_secondary_connection_string" {
description = "The secondary connection string for the storage account"
value = azurerm_storage_account.self.secondary_connection_string
sensitive = true
}
output "storage_account_primary_blob_endpoint" {
description = "The endpoint URL for blob storage in the primary location."
value = azurerm_storage_account.self.primary_blob_endpoint
}
output "storage_account_primary_blob_host" {
description = "The hostname with port if applicable for blob storage in the primary location."
value = azurerm_storage_account.self.primary_blob_host
}
output "storage_account_secondary_blob_endpoint" {
description = "The endpoint URL for blob storage in the secondary location."
value = azurerm_storage_account.self.secondary_blob_endpoint
}
output "storage_account_secondary_blob_host" {
description = "The hostname with port if applicable for blob storage in the secondary location."
value = azurerm_storage_account.self.secondary_blob_host
}
output "storage_primary_access_key" {
description = "The primary access key for the storage account"
value = azurerm_storage_account.self.primary_access_key
sensitive = true
}
output "storage_secondary_access_key" {
description = "The primary access key for the storage account."
value = azurerm_storage_account.self.secondary_access_key
sensitive = true
}
output "containers" {
description = "Map of containers."
value = { for c in azurerm_storage_container.container : c.name => c.id }
}
output "file_shares" {
description = "Map of Storage SMB file shares."
value = { for f in azurerm_storage_share.fileshare : f.name => f.id }
}
output "tables" {
description = "Map of Storage tables."
value = { for t in azurerm_storage_table.tables : t.name => t.id }
}
output "queues" {
description = "Map of Storage queues."
value = { for q in azurerm_storage_queue.queues : q.name => q.id }
}