Coding Conventions
A set of rules, techniques, and best practices for creating a cleaner, more readable, and more efficient code base with minimal errors. It helps future authors, as well as code reviewers, align.

Style Conventions
Blocks
Block types should be in the following order and grouped with like types.
Variables
Variables should be in alphabetical order. Keeping Terraform variables in alphabetical order has a few practical benefits:
Avoid redundant variable names within the module's context when writing child modules. Avoiding redundant variable names in child modules offers several benefits:
When consuming child modules in root modules, prefix variable names with the module name. Prefixing variable names with the module name in root modules when consuming child modules offers several benefits:
Last updated