Skip to content

Commit 7a743fd

Browse files
committed
fix: updated error message in var
1 parent 6c586f6 commit 7a743fd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,11 +125,11 @@ variable "spark_conf" {
125125

126126
variable "cluster_log_conf_destination" {
127127
type = string
128-
description = "Provide a dbfs location, example 'dbfs:/cluster-logs', to push all cluster logs to certain location"
128+
description = "Provide a dbfs location to push all cluster logs to certain location"
129129
default = ""
130130
validation {
131131
condition = length(var.cluster_log_conf_destination) == 0 ? true : startswith(var.cluster_log_conf_destination, "dbfs:/")
132-
error_message = "Provide valid path to dbfs logs folder, example: 'dbfs:/mnt/logs'"
132+
error_message = "Provide valid path to dbfs logs folder, example: 'dbfs:/logs'"
133133
}
134134
}
135135

0 commit comments

Comments
 (0)