Merge pull request #31010 from jhrcek/patch-1

Add missing syntax highlighting for terraform snippets
This commit is contained in:
Laura Pacilio 2022-05-16 13:00:05 -04:00 committed by GitHub
commit 1fd140ff83
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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