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 6c586f6 commit 7a743fdCopy full SHA for 7a743fd
variables.tf
@@ -125,11 +125,11 @@ variable "spark_conf" {
125
126
variable "cluster_log_conf_destination" {
127
type = string
128
- description = "Provide a dbfs location, example 'dbfs:/cluster-logs', to push all cluster logs to certain location"
+ description = "Provide a dbfs location to push all cluster logs to certain location"
129
default = ""
130
validation {
131
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'"
+ error_message = "Provide valid path to dbfs logs folder, example: 'dbfs:/logs'"
133
}
134
135
0 commit comments