From 0b588774634920999df200af14da61d8fd923d56 Mon Sep 17 00:00:00 2001 From: Brian Ojeda <9335829+sgtoj@users.noreply.github.com> Date: Thu, 28 Dec 2023 18:09:56 +0000 Subject: [PATCH] feat: remove default msg template for sms defined by var --- variables.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/variables.tf b/variables.tf index 68c3a64..23709d9 100755 --- a/variables.tf +++ b/variables.tf @@ -238,11 +238,11 @@ variable "email_verification_subject" { variable "sms_authentication_message" { type = string description = "A string representing the SMS authentication message." - default = "Your code is {####}" + default = "" } variable "sms_verification_message" { type = string description = "A string representing the SMS verification message." - default = "Your code is {####}" + default = "" }