mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
8 lines
189 B
HCL
8 lines
189 B
HCL
resource "aws_lambda_event_source_mapping" "this" {
|
|
event_source_arn = var.queue_arn
|
|
function_name = var.lambda_arn
|
|
batch_size = var.batch_size
|
|
enabled = true
|
|
}
|
|
|
|
|