You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+8
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,14 @@
2
2
3
3
## [Unreleased]
4
4
5
+
## [0.11.5] - 2022-04-02
6
+
7
+
- Adds support for route-manifest v4 ([#292](https://github.com/milliHQ/terraform-aws-next-js/pull/292))
8
+
This ensures the builder works with Next.js versions `>= v12.1.3`.
9
+
- Restrict [image optimizer](https://github.com/milliHQ/terraform-aws-next-js-image-optimization) submodule version to `<= v12.0.10` ([#293](https://github.com/milliHQ/terraform-aws-next-js/pull/293))
10
+
Since the `v12.0.10` release is the last version with support for [Terraform AWS Provider](https://registry.terraform.io/providers/hashicorp/aws/)`v3.x` this update ensures existing setups will not break in the future.
11
+
- Bump @vercel/build-utils from `2.10.1` to `2.12.1` ([#287](https://github.com/milliHQ/terraform-aws-next-js/pull/287))
After running the initial `terraform apply`, the command fails with the following error message:
19
+
20
+
> Specified ReservedConcurrentExecutions for function decreases account's UnreservedConcurrentExecution below its minimum value of [50].
21
+
22
+
## Problem
23
+
24
+
The module requests a reserved concurrent execution of 1 for the deploy-trigger component.
25
+
This is a Lambda function that runs after every apply and is responsible for updating files in the associated S3 bucket.
26
+
27
+
To ensure that concurrent deployments do not override each other, we limit the maximal number of concurrent instances of this function to 1.
28
+
29
+
While this produces no extra costs, it counts towards the account's concurrent executions quota.
30
+
31
+
For newer AWS accounts this quota has been lowered from 1000 to 50.
32
+
33
+
Since 50 is the account's required minimum for concurrent executions, no new lambda with a reserved concurrent execution can be created.
34
+
35
+
## Workaround
36
+
37
+
You can simply request an increase of the "Concurrent executions quota" (L-B99A9384) through the AWS console at no extra costs.
38
+
39
+
The quota increase can be requested here: https://console.aws.amazon.com/servicequotas/home/services/lambda/quotas/L-B99A9384
40
+
41
+
Any value greater than 50 should work, the [default quota is 1000](https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-limits.html#compute-and-storage).
42
+
43
+
It usually takes 2-3 business days until the increase is granted.
0 commit comments