forked from databricks/terraform-databricks-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
44 lines (36 loc) · 1.35 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 "arm_client_id" {
value = data.azurerm_client_config.current.client_id
description = "Client ID for current user/service principal"
}
output "arm_subscription_id" {
value = data.azurerm_client_config.current.subscription_id
description = "Azure Subscription ID for current user/service principal"
}
output "arm_tenant_id" {
value = data.azurerm_client_config.current.tenant_id
description = "Azure Tenant ID for current user/service principal"
}
output "azure_region" {
value = local.location
description = "Geo location of created resources"
}
output "resource_group" {
value = azurerm_resource_group.this.name
description = "Name of created resource group"
}
output "my_ip_addr" {
value = local.ifconfig_co_json.ip
description = "IP address of caller"
}
output "test_vm_public_ip" {
value = azurerm_public_ip.testvmpublicip.ip_address
description = "Public IP of the created virtual machine"
}
output "databricks_azure_workspace_resource_id" {
description = "The ID of the Databricks Workspace in the Azure management plane."
value = azurerm_databricks_workspace.this.id
}
output "workspace_url" {
value = "https://${azurerm_databricks_workspace.this.workspace_url}/"
description = "The workspace URL which is of the format 'adb-{workspaceId}.{random}.azuredatabricks.net'"
}