Clarify dependency management in style guide (#35259)

Co-authored-by: Brian McClain <brianmmcclain@gmail.com>
pull/37137/head
Mohamed Mohamed 1 year ago committed by GitHub
parent c613e86e77
commit b70294ffd2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -20,7 +20,7 @@ Writing Terraform code in a consistent style makes it easier to read and maintai
- Use `#` for single and multi-line comments.
- Use nouns for resource names and do not include the resource type in the name.
- Use underscores to separate multiple words in names. Wrap the resource type and name in double quotes in your resource definition.
- Let your code build on itself: define dependent resources after the resources that reference them.
- Let your code build on itself: define dependent resources after the resources they reference.
- Include a type and description for every variable.
- Include a description for every output.
- Avoid overuse of variables and local values.

Loading…
Cancel
Save