Skip to content

fix: setting constraint to be gte version

Matt Morrison requested to merge chore/update_version_constraint into main

Description 📖

Per the terraform docs:

Reusable modules should constrain only their minimum allowed versions of Terraform and providers, such as >= 0.12.0. This helps avoid known incompatibilities, while allowing the user of the module flexibility to upgrade to newer versions of Terraform without altering the module.

Currently the module pins to the very specific version of 1.4.0 which is breaking upstream inclusions when trying to update terraform version past that.

Changes 🚧

  • Update version constraint to be greater than or equal to 1.4.0 which sets the 'minimum' version as 1.4.0

Merge request reports