From fd5020cac76544ea83caa74a993db87340318f6e Mon Sep 17 00:00:00 2001 From: Jan Hrcek <2716069+jhrcek@users.noreply.github.com> Date: Fri, 6 May 2022 08:22:03 +0200 Subject: [PATCH] Add missing syntax highlighting for terraform snippets --- website/docs/language/values/variables.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/docs/language/values/variables.mdx b/website/docs/language/values/variables.mdx index 7669c3087f..65fed0dbc0 100644 --- a/website/docs/language/values/variables.mdx +++ b/website/docs/language/values/variables.mdx @@ -194,7 +194,7 @@ values in cleartext. For more information, see Declare a variable as sensitive by setting the `sensitive` argument to `true`: -``` +```hcl variable "user_information" { type = object({ name = string @@ -283,7 +283,7 @@ random_pet.animal: Creation complete after 0s [id=jae-known-mongoose] The `nullable` argument in a variable block controls whether the module caller may assign the value `null` to the variable. -``` +```hcl variable "example" { type = string nullable = false