These are the terraform modules which SRE team user to build the Mattermost Cloud infrastructure.
Required Tools:
- Terraform
- Terraform Docs
- tflint
make lint
- Re-usable modules
- Testing Terraform code (unit, end-to-end)
We suggest & follow a semantic version tagging for this repo. To simplify, a semantic version tag contains three parts. For example, v1.2.3
-
The first number is the major version, which only gets incremented when you make incompatible API or Module changes.(i.e v1 to v2)
-
The second number is the minor version, which gets incremented when you add functionality in a backwards-compatible manner. For example , adding a new module. (i.e v1.2.3 ==> v1.3.0)
-
The third number is the patch version, which gets incremented when you make backwards-compatible bug fixes. For example, if an existing module had a bug that caused an error when the user tried to call it or added a new feature for it etc. (i.e v1.2.3 to v1.2.4)
See the existing tags
git tag --online
Adding a tag to the last commit
git tag -a v1.1.0 HEAD -m "Added new modules"
Push the tag to the remote
git push origin v1.1.0
Incase if we need to delete a specific tag
git tag -d <tag-name>
git push --delete origin <tag-name>
No requirements.
No providers.
No modules.
No resources.
No inputs.
No outputs.