11 lines
309 B
HCL
11 lines
309 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}"
|
|
} |