25 lines
593 B
HCL
25 lines
593 B
HCL
output "databricks_workspace_url" {
|
|
value = var.enabled? azurerm_databricks_workspace.dbricksws[0].workspace_url : null
|
|
}
|
|
|
|
output "databricks_token" {
|
|
value = var.enabled? nonsensitive(databricks_token.pat[0].token_value) : null
|
|
}
|
|
|
|
output "cluster_name" {
|
|
value = "cluster-${local.cluster_name}"
|
|
}
|
|
|
|
output "sql_endpoint_jdbc_url" {
|
|
value = databricks_sql_endpoint.sqlep.jdbc_url
|
|
}
|
|
|
|
output "sql_endpoint_data_source_id" {
|
|
value = databricks_sql_endpoint.sqlep.data_source_id
|
|
}
|
|
|
|
output "sql_endpoint_odbc_params" {
|
|
value = databricks_sql_endpoint.sqlep.odbc_params
|
|
}
|
|
|
|
|