Skip to content

Commit 050125b

Browse files
authored
[PRMP-741] concurrent reserved only in prod (#477)
1 parent bf885c5 commit 050125b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

infrastructure/lambda-dynamodb-migration.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ module "migration-dynamodb-lambda" {
2828

2929
lambda_timeout = 900
3030
memory_size = 1024
31-
reserved_concurrent_executions = 200
31+
reserved_concurrent_executions = contains(["prod"], terraform.workspace) ? 100 : 5
3232

3333
depends_on = [
3434
module.lloyd_george_reference_dynamodb_table,

0 commit comments

Comments
 (0)