Reputation: 1160
Is there any way to apply an autoscaling configuration to AWS Lambda provisioned concurrency using terraform?
I want to scale it up during peak hours, and ideally maintain an N+1 hot concurrency rate.
I looked here but found no reference to Lambdas: https://www.terraform.io/docs/providers/aws/r/appautoscaling_policy.html
Upvotes: 3
Views: 1445
Reputation: 6600
The feature to control the auto-scaling of lambdas was added Dez.2019 (see this blog). As long as this is not available through Terraform you have a couple of options to work around this
Upvotes: 1