From f39124b54e758943799f3f42799e412f5cf04504 Mon Sep 17 00:00:00 2001 From: Brian McClain Date: Tue, 26 Mar 2024 14:34:13 -0700 Subject: [PATCH] Update website/docs/language/style.mdx Co-authored-by: rita <8647768+ritsok@users.noreply.github.com> --- website/docs/language/style.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/language/style.mdx b/website/docs/language/style.mdx index 73669e16de..a5963bb6c5 100644 --- a/website/docs/language/style.mdx +++ b/website/docs/language/style.mdx @@ -18,7 +18,7 @@ Writing Terraform code in a consistent style makes it easier to read and maintai - Run `terraform fmt` and `terraform validate` before committing your code to version control. - 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 a resource name. Wrap resource type and name in double quotes in your resource definition. +- Use underscores to separate multiple words in a resource name. 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. - Include a type and description for every variable. - Include a default value for optional variables.