-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathoutputs.tf
More file actions
23 lines (20 loc) · 744 Bytes
/
outputs.tf
File metadata and controls
23 lines (20 loc) · 744 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
output "sql_endpoint_jdbc_url" {
value = [for n in databricks_sql_endpoint.this : n.jdbc_url]
description = "JDBC connection string of SQL Endpoint"
}
output "sql_endpoint_data_source_id" {
value = [for n in databricks_sql_endpoint.this : n.data_source_id]
description = "ID of the data source for this endpoint"
}
output "token" {
value = databricks_token.pat.token_value
description = "Databricks Personal Authorization Token"
sensitive = true
}
output "clusters" {
value = [for param in var.clusters : {
name = param.cluster_name
id = databricks_cluster.cluster[param.cluster_name].id
} if length(var.clusters) != 0]
description = "Provides name and unique identifier for the clusters"
}