mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-07-12 13:29:04 +00:00
22 lines
607 B
HCL
22 lines
607 B
HCL
module "lambda" {
|
|
source = "../../modules/lambda_with_sqs"
|
|
|
|
name = "sharepoint_renamer"
|
|
stage = var.stage
|
|
|
|
image_uri = local.image_uri
|
|
timeout = var.timeout
|
|
|
|
reserved_concurrent_executions = var.reserved_concurrent_executions
|
|
|
|
batch_size = var.batch_size
|
|
|
|
environment = {
|
|
STAGE = var.stage
|
|
|
|
SHAREPOINT_CLIENT_ID = var.sharepoint_client_id
|
|
SHAREPOINT_CLIENT_SECRET = var.sharepoint_client_secret
|
|
SHAREPOINT_TENANT_ID = var.sharepoint_tenant_id
|
|
SOCIAL_HOUSING_WAVE_3_SHAREPOINT_ID = var.social_housing_wave_3_sharepoint_id
|
|
}
|
|
}
|