From 226532a03c62df0e48be557208b877819ffba87d Mon Sep 17 00:00:00 2001 From: Stephen Kirby Date: Thu, 5 Oct 2023 21:31:53 +0000 Subject: [PATCH] endswith typo --- filebrowser/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/filebrowser/main.tf b/filebrowser/main.tf index b730160..572b416 100644 --- a/filebrowser/main.tf +++ b/filebrowser/main.tf @@ -20,7 +20,7 @@ variable "database_path" { description = "The path to the filebrowser database." default = "filebrowser.db" validation { - condition = ends_with(var.database_path, "filebrowser.db") + condition = endswith(var.database_path, "filebrowser.db") error_message = "The database_path must end with 'filebrowser.db'." } }