We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd00a2a commit 0264305Copy full SHA for 0264305
outputs.tf
@@ -13,3 +13,11 @@ output "token" {
13
description = "Databricks Personal Authorization Token"
14
sensitive = true
15
}
16
+
17
+output "clusters" {
18
+ value = [for param in var.clusters : {
19
+ name = param.cluster_name
20
+ id = databricks_cluster.cluster[param.cluster_name].id
21
+ } if length(var.clusters) != 0]
22
+ description = "Provides name and unique identifier for the clusters"
23
+}
0 commit comments