Skip to content

Commit 9250b55

Browse files
authored
Merge pull request #45 from tomarv2/develop
Develop
2 parents a8e0ccb + 92c0fab commit 9250b55

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

output.tf

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,16 @@ output "single_node_cluster_id" {
88
value = join("", databricks_cluster.single_node_cluster.*.id)
99
}
1010

11+
output "cluster_name" {
12+
description = "databricks cluster name"
13+
value = join("", databricks_cluster.cluster.*.cluster_name)
14+
}
15+
16+
output "single_node_cluster_name" {
17+
description = "databricks cluster name"
18+
value = join("", databricks_cluster.single_node_cluster.*.cluster_name)
19+
}
20+
1121
/*
1222
output "databricks_token" {
1323
description = "databricks token"

0 commit comments

Comments
 (0)