Skip to content

v0.12.0

Compare
Choose a tag to compare
@ofhouse ofhouse released this 07 Apr 18:08
· 44 commits to main since this release

Breaking changes

  • The module now requires AWS Provider Version v4.8.0 or higher.
    Please follow the official upgrade guide when upgrading from the v3 provider: Terraform AWS Provider Version 4 Upgrade Guide.

  • Attaching additional policies to Lambda role now requires second variable
    When using lambda_policy_json to attach additional policy statements to the Lambda role, you also need to set lambda_attach_policy_json = true now, otherwise the statements are ignored:

    module "tf_next" {
      source = "milliHQ/next-js/aws"
      ...
      
    + lambda_attach_policy_json = true
      lambda_policy_json        = ...
    }

Changelog

  • Ensure compatibility with AWS Provider Version 4 (#286, #291)
  • Add switch for attaching additional policy documents (#276)

New Contributors