lgallard / terraform-aws-cognito-user-pool

Terraform module to create Amazon Cognito User Pools, configure its attributes and resources such as app clients, domain, resource servers. Amazon Cognito User Pools provide a secure user directory that scales to hundreds of millions of users.
Apache License 2.0
93 stars 99 forks source link

Added `email_subject`, `email_message` and `sms_message` support for `verification_message_template` #159

Open riccardolocci opened 4 days ago

riccardolocci commented 4 days ago

This pull request allows to set email configuration fields through verification_message_template.

Example:

verification_message_template = {
    email_message = "Your password reset code is {####}"
    email_subject = "Change password - Your verification code"
}

It should also solve #48