mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
14 lines
211 B
HCL
14 lines
211 B
HCL
module "lambda" {
|
|
source = "../modules/lambda_with_sqs"
|
|
|
|
name = "postcode-splitter"
|
|
stage = var.stage
|
|
|
|
image_uri = local.image_uri
|
|
|
|
|
|
environment = {
|
|
STAGE = var.stage
|
|
LOG_LEVEL = "info"
|
|
}
|
|
}
|