From cea316abc2d43fca47fa559521c3de6564304316 Mon Sep 17 00:00:00 2001 From: David Cavazos Date: Wed, 27 Mar 2024 07:47:07 -0700 Subject: [PATCH] do not use unique names by default --- variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/variables.tf b/variables.tf index b95c38e..1783048 100644 --- a/variables.tf +++ b/variables.tf @@ -59,5 +59,5 @@ variable "webhook_path" { variable "unique_names" { description = "Whether to use unique names for resources" type = bool - default = true + default = false }