Skip to content

Commit

Permalink
fix parameters (#1485)
Browse files Browse the repository at this point in the history
  • Loading branch information
timburke-hackit authored Nov 6, 2023
1 parent b61339f commit 3f75e85
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions terraform/core/13-mssql-ingestion.tf
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ module "academy_state_machine" {
"Resource": "${module.max_concurrency_lambda[0].lambda_function_arn}",
"Parameters": {
"AvailableIPs.$": "$.SubnetResult.Subnets[0].AvailableIpAddressCount",
"Workers.$": "${local.number_of_glue_workers}"
"Workers": "${local.number_of_glue_workers}"
},
"ResultPath": "$.MaxConcurrencyResult",
"Next": "Map"
Expand All @@ -283,11 +283,9 @@ module "academy_state_machine" {
"Resource": "arn:aws:states:::glue:startJobRun.sync",
"Parameters": {
"JobName": "${module.academy_glue_job[0].job_name}",
"Parameters": {
"Arguments": {
"--table_filter_expression.$": "$.FilterString"
}
}
},
"End": true
}
Expand Down

0 comments on commit 3f75e85

Please sign in to comment.