Skip to content

Commit

Permalink
refactor(AWS Lambda): Support provisionedConcurrency set to 0
Browse files Browse the repository at this point in the history
  • Loading branch information
d-fay committed Mar 6, 2022
1 parent 6bd02c4 commit e40ba43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/plugins/aws/provider.js
Expand Up @@ -1282,7 +1282,7 @@ class AwsProvider {
},
additionalProperties: false,
},
provisionedConcurrency: { type: 'integer', minimum: 1 },
provisionedConcurrency: { type: 'integer', minimum: 0 },
reservedConcurrency: cfValue({ type: 'integer', minimum: 0 }),
role: { $ref: '#/definitions/awsLambdaRole' },
runtime: { $ref: '#/definitions/awsLambdaRuntime' },
Expand Down

0 comments on commit e40ba43

Please sign in to comment.