From 37b5af7ce2e1b5f393da23f5ebd9cb782c45db1a Mon Sep 17 00:00:00 2001 From: Theo Skolnik Date: Wed, 4 Oct 2023 11:45:06 -0700 Subject: [PATCH] defaults auth to false --- variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/variables.tf b/variables.tf index 914d63f2..299cb338 100644 --- a/variables.tf +++ b/variables.tf @@ -495,7 +495,7 @@ variable "redis_size" { } variable "redis_use_password_auth" { - default = true + default = false type = bool description = "If set to false, the Redis instance will be accessible without authentication. enable_authentication can only be set to false if a subnet_id is specified; and only works if there aren't existing instances within the subnet with enable_authentication set to true." }