From 842241647bfe9cda2eb89f6ec98fdee6676ad942 Mon Sep 17 00:00:00 2001 From: Brian Ojeda <9335829+sgtoj@users.noreply.github.com> Date: Thu, 28 Dec 2023 18:38:47 +0000 Subject: [PATCH] feat: update admin create invation email --- variables.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/variables.tf b/variables.tf index 23709d9..b77a3f7 100755 --- a/variables.tf +++ b/variables.tf @@ -17,8 +17,8 @@ variable "email_config" { variable "admin_create_user_config" { type = object({ allow_admin_create_user_only = optional(bool, true) - email_message = optional(string, "{username}, your verification code is `{####}`") - email_subject = optional(string, "Your verification code") + email_message = optional(string, "{username}, your temporary password is `{####}`") + email_subject = optional(string, "Your Invitation Information") sms_message = optional(string, "Your username is {username} and temporary password is `{####}`") }) description = "The configuration for AdminCreateUser requests"