From 885f2f6d53775e8fbfd32306c899bd5a85d9bb77 Mon Sep 17 00:00:00 2001 From: Brian Ojeda <9335829+sgtoj@users.noreply.github.com> Date: Thu, 28 Dec 2023 11:35:04 +0000 Subject: [PATCH] feat: update default email message template --- variables.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/variables.tf b/variables.tf index cd97d91..68c3a64 100755 --- a/variables.tf +++ b/variables.tf @@ -7,8 +7,8 @@ variable "email_config" { from_email_address = optional(string) reply_to_email_address = optional(string, "") source_arn = optional(string, "") - verification_message = optional(string, "") - verification_subject = optional(string, "") + verification_message = optional(string, "Your verification code is `{####}`") + verification_subject = optional(string, "Your verification code") }) description = "Configuration email from the userpool." default = {}