terraform: Add sendmail file

This commit is contained in:
Glenn Y. Rolland 2022-06-15 13:59:15 +02:00
parent ea529b3c86
commit de4b8baba4

17
terraform/sendmail.tf Normal file
View file

@ -0,0 +1,17 @@
# module "welcome" {
# source = "git::https://github.com/cloudposse/terraform-null-smtp-mail.git?ref=master"
# host = var.smtp_host
# port = var.smtp_port
# username = var.smtp_username
# password = var.smtp_password
# from = var.email_from
# to = var.email_to
# subject = "Welcome ${first_name}"
# body = "Your account has been created. Login here: $${homepage}"
#
# vars = {
# first_name = "Example"
# homepage = "https://cloudposse.com"
# }
# }
#