Skip to content

Commit

Permalink
Merge 837b88c into backport/docs-metadata-functions/jolly-settled-lizard
Browse files Browse the repository at this point in the history
  • Loading branch information
teamterraform authored Feb 20, 2023
2 parents f70f124 + 837b88c commit fcaa996
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions website/data/internals-nav-data.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@
"path": "provider-meta"
},
{
"title": "Metadata Functions",
"path": "metadata-functions"
"title": "Functions Metadata",
"path": "functions-meta"
},
{
"title": "Machine Readable UI",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
page_title: 'Command: metadata functions'
page_title: Functions Metadata
description: >-
The `terraform metadata functions` command prints signatures for all the
functions available in the current Terraform version.
Expand Down Expand Up @@ -37,7 +37,7 @@ We will introduce new major versions only within the bounds of
## Format Summary

The following sections describe the JSON output format by example, using a pseudo-JSON notation.
Important elements are described with comments, which are prefixed with //.
Important elements are described with comments, which are prefixed with `//`.
To avoid excessive repetition, we've split the complete format into several discrete sub-objects, described under separate headers. References wrapped in angle brackets (like `<block-representation>`) are placeholders which, in the real output, would be replaced by an instance of the specified sub-object.

The JSON output format consists of the following objects and sub-objects:
Expand Down Expand Up @@ -87,15 +87,15 @@ A parameter representation describes a parameter to a function.

```javascript
{
// "name" is the internal name of the parameter
// "name" is the internal name of the parameter
"name": "string",

// "description" is an optional English-language description of
// the purpose and usage of the parameter in Markdown.
"description": "string",

// "type" is a representation of a type specification
// that the parameters's value must conform to.
// that the parameter's value must conform to.
"type": "string"
}
```

0 comments on commit fcaa996

Please sign in to comment.