Skip to content

Releases: clouddrove/terraform-aws-health-notifier

Release list

v0.0.2

Choose a tag to compare

@anmolnagpal anmolnagpal released this 02 Sep 21:25

Features

reserved_concurrent_executions is now configurable (#35). It was hardcoded to 5, which made the module undeployable on some accounts.

AWS keeps a floor of 10 unreserved concurrent executions per account, and unreserved is the account limit minus everything reserved. An account whose Concurrent executions quota sits at the minimum of 10 therefore rejects any reservation, not just a large one:

InvalidParameterValueException: Specified ReservedConcurrentExecutions for function
decreases account's UnreservedConcurrentExecution below its minimum value of [10].

Lowering the number does not help — 5 leaves 5 unreserved, 1 leaves 9, and both are under the floor. Only -1 (no reservation) works, and there was previously no way to express that.

The failure is also expensive to hit, because PutFunctionConcurrency runs after the function is created: the apply leaves a created-but-tainted function behind and re-taints it on every retry.

Upgrading

No action required. The default remains 5, so behaviour is unchanged on an account with the standard quota of 1000. Accounts with a restricted quota can now set:

reserved_concurrent_executions = -1

A validation rejects anything other than -1 or a non-negative number, so a bad value fails at plan rather than at PutFunctionConcurrency.

Also in this release

  • Actions dependency bumps (#34)
  • CHANGELOG.md added for v0.0.1 (#33)

Note on v0.1.0

v0.1.0 was published briefly for this same content before being renumbered to match this repository's 0.0.x convention. It remains listed in the Terraform registry because published registry versions cannot be withdrawn from the tag alone; its tag has been kept so it resolves rather than dangling. Use 0.0.2.

v0.0.1

Choose a tag to compare

@clouddrove-ci clouddrove-ci released this 28 Aug 01:12
ac6c187

[v0.0.1] - 2026-08-28

✨ New Features

🐛 Bug Fixes

♻️ Refactors

📝 Documentation Changes

👷 CI

🔧 Chores