-
Notifications
You must be signed in to change notification settings - Fork 152
/
Copy pathoutputs.tf
39 lines (32 loc) · 995 Bytes
/
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
output "azure_resource_group_id" {
description = "ID of the created Azure resource group"
value = azurerm_resource_group.this.id
}
output "workspace_id" {
description = "The Databricks workspace ID"
value = azurerm_databricks_workspace.this.workspace_id
}
output "workspace_url" {
description = "The Databricks workspace URL"
value = azurerm_databricks_workspace.this.workspace_url
}
output "arm_client_id" {
description = "**Depricated**"
value = data.azurerm_client_config.current.client_id
}
output "arm_subscription_id" {
description = "**Depricated**"
value = data.azurerm_client_config.current.subscription_id
}
output "arm_tenant_id" {
description = "**Depricated**"
value = data.azurerm_client_config.current.tenant_id
}
output "azure_region" {
description = "**Depricated**"
value = local.location
}
output "resource_group" {
description = "**Depricated**"
value = azurerm_resource_group.this.name
}