-
Notifications
You must be signed in to change notification settings - Fork 1
/
output.tf
28 lines (24 loc) · 923 Bytes
/
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
output "adls_name" {
description = "Name of the created storage account"
value = azurerm_storage_account.storage.name
}
output "adls_dfs_endpoint" {
description = "Primary DFS endpoint of the created storage account"
value = azurerm_storage_account.storage.primary_dfs_endpoint
}
output "adls_container_landing_zone" {
description = "Name of the created storage container landing-zone"
value = azurerm_storage_container.landing-zone.name
}
output "adls_container_bronze" {
description = "Name of the created storage container bronze"
value = azurerm_storage_container.bronze.name
}
output "adls_container_silver" {
description = "Name of the created storage container silver"
value = azurerm_storage_container.silver.name
}
output "adls_container_gold" {
description = "Name of the created storage container gold"
value = azurerm_storage_container.gold.name
}