Skip to content

Commit 41d297f

Browse files
committed
Fix: Remove non-existent cluster_policy_id output
The compute module's outputs.tf was referencing a databricks_cluster_policy.uc_qs_policy resource that doesn't exist, causing Terraform errors for all cluster modules (sandbox, dev, prod). This commit removes the invalid cluster_policy_id output, keeping only the valid cluster_id output that references the existing databricks_cluster.example resource. Fixes terraform errors: - Error: Reference to undeclared resource - A managed resource 'databricks_cluster_policy' 'uc_qs_policy' has not been declared
1 parent 45de8b2 commit 41d297f

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

uc-quickstart/utils/modules/compute/outputs.tf

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,3 @@ output "cluster_id" {
22
description = "ID of the created cluster"
33
value = databricks_cluster.example.id
44
}
5-
6-
output "cluster_policy_id" {
7-
description = "ID of the created cluster policy"
8-
value = databricks_cluster_policy.uc_qs_policy.id
9-
}
10-

0 commit comments

Comments
 (0)