mirror of
https://github.com/hashicorp/terraform.git
synced 2026-06-09 00:42:48 -04:00
website docs: fix "Block Representation" for provider schema -json (#34653)
* website docs: fix "Block Representation" for `provider schema -json` * Update website/docs/cli/commands/providers/schema.mdx --------- Co-authored-by: Radek Simko <radeksimko@users.noreply.github.com>
This commit is contained in:
parent
3475d22741
commit
30505dd1bf
1 changed files with 9 additions and 8 deletions
|
|
@ -144,15 +144,16 @@ A block representation contains "attributes" and "block_types" (which represent
|
|||
// list
|
||||
// set
|
||||
// map
|
||||
"nesting_mode": "list",
|
||||
"block": <block-representation>,
|
||||
"nesting_mode": "list",
|
||||
"block": <block-representation>,
|
||||
|
||||
// "min_items" and "max_items" set lower and upper
|
||||
// limits on the number of child blocks allowed for
|
||||
// the list and set modes. These are
|
||||
// omitted for other modes.
|
||||
"min_items": 1,
|
||||
"max_items": 3
|
||||
// "min_items" and "max_items" set lower and upper
|
||||
// limits on the number of child blocks allowed for
|
||||
// the list and set modes. These are
|
||||
// omitted for other modes.
|
||||
"min_items": 1,
|
||||
"max_items": 3
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
|
|
|||
Loading…
Reference in a new issue