versions
folder, where environment-specific module manifests are stored.versions
YAML files allow you to pin specific versions of modules in different environments, which can be crucial for ensuring that production environments use stable and tested versions while development environments may use newer, experimental versions.The Organization Terraform Module Registry will adopt a versioning numbering scheme that follows the guidelines of Semantic Versioning.
In summary, this means a version number will be represented in the form MAJOR
.MINOR
.PATCH
.
The following meanings apply:
- Increasing only the patch number suggests that the release includes only bug fixes, and is intended to be functionally equivalent.
- Increasing the minor number suggests that new features have been added but that existing functionality remains broadly compatible.
- Increasing the major number indicates that significant breaking changes have been made, and thus extra care or attention is required during an upgrade. To allow practitioners sufficient time and opportunity to upgrade to the latest version of the provider, we recommend releasing major versions no more than once per year. Releasing major versions more frequently could present a barrier to adoption due to the effort required to upgrade.
The following document provides detailed examples of semantic increments and examples of changelog notes that can be used to guide versioning decisions
[^ table of contents ^](#table-of-contents)