Here are a few guidelines to help you get started.
- Fork this repository.
- Clone your forked repository to your local machine.
- Create a new branch for your changes:
git checkout -b feature/my-new-feature
. - Make your changes and test them thoroughly.
- Commit your changes:
git commit -m "Add some feature"
. - Push your changes to your fork:
git push origin feature/my-new-feature
. - Create a pull request from your branch to the main repository's
main
branch.
Make sure your code follows our and Terraform coding styles.
If applicable, add or update tests to ensure your changes work as intended.
If your changes introduce new features, update the documentation to reflect those changes.
Please use meaningful commit messages. Follow the format:
[Type] Short description
Longer description of the changes, especially whys.
Types: [Feature]
, [Fix]
, [Docs]
, [Refactor]
, [Chore]
, [Style]
- I have tested these changes thoroughly.
- My code follows the project's coding style.
- I have added appropriate comments to my code, especially in complex areas.
- All new and existing tests passed locally.
Feedback and suggestions are welcome! Feel free to open an issue if you have any questions or ideas.