ADR-0003
Terraform public modules vs custom modules
Last updated
Was this helpful?
Terraform public modules vs custom modules
Last updated
Was this helpful?
07/22/2023
If superseded by another ADR, include the link here:
A Terraform module is a great resource for describing the architecture and keeping infrastructure as code DRY. Open-source modules are published to registry.terraform.io. Should we consume Terraform public modules or develop custom modules?
Developers at all skill levels should be able to contribute and maintain over time.
The interfaces provided to the consumer should be simple and focused.
Security and other policies should align with organizational requirements.
Good balance between DRY and Keep it simple, stupid (KISS).
Align with Hashicorp documentation.
Single testing framework.
Option 2: Development of custom Terraform modules to fit the needs of the organization and the skills of the employees
If the module meets all our requirements right now, we do not have to write or maintain any code.
We can adhere to the DRY principle.
Initially, they will speed up delivery.
We can balance DRY and KISS.
New developers are more comfortable submitting PRs and learning git within the organization's context.
We have control over the interfaces.
We can align with organizational security policies.
Initially, public modules will speed up delivery.
Use Terraform public modules.
Development of custom Terraform modules.
Combination of both.