diff --git a/main.tf b/main.tf index 782b2e1..01d72d6 100644 --- a/main.tf +++ b/main.tf @@ -327,6 +327,7 @@ resource "google_cloudfunctions2_function" "lambda_function" { password = "${random_password.password.result}" mailgun_email = var.mailgun_email api_key = var.mailgun_api_key + verification_link = var.verification_link } vpc_connector = "projects/${data.google_project.project-id.project_id}/locations/${var.region}/connectors/${google_vpc_access_connector.serverless-vpc-connector.name}" vpc_connector_egress_settings = var.vpc_connector_egress_settings diff --git a/variables.tf b/variables.tf index 16e20da..cdf0976 100644 --- a/variables.tf +++ b/variables.tf @@ -689,4 +689,9 @@ variable "rule_scheme" { variable "rule_port_range" { type = string +} + +variable "verification_link" { + type = string + } \ No newline at end of file