attempting ends with

pull/78/head
Stephen Kirby 2 years ago
parent 5146af839d
commit ba9cb6dbd3

@ -1,5 +1,5 @@
terraform {
required_version = ">= 1.0"
required_version = ">= 1.3"
required_providers {
coder = {
@ -20,7 +20,8 @@ variable "database_path" {
description = "The path to the filebrowser database."
default = "filebrowser.db"
validation {
condition = can(regex(".*filebrowser\\.db$", var.database_path))
condition = endswith(var.database_path, "filebrowser.db")
# condition = can(regex(".*filebrowser\\.db$", var.database_path))
error_message = "The database_path must end with 'filebrowser.db'."
}
}

Loading…
Cancel
Save