Files
opentf/website/docs/cli/commands/metadata-functions.mdx
2026-03-26 17:19:27 +02:00

25 lines
675 B
Plaintext

---
description: >-
The 'tofu metadata functions' command displays the OpenTofu functions available
in the OpenTofu evaluation context
---
# Command: metadata functions
Prints out a json representation of the available function signatures.
## Usage
`tofu [global options] metadata functions -json`
This command has one required flag:
* `-json` - Prints the available function signatures in json format.
This command follows the [raw json specification](../../internals/machine-readable-ui.mdx#raw-json-output).
## Example
```shellsession
$ tofu metadata functions -json
{"format_version":"1.0","function_signatures":{"abs":{"description":"`abs` returns...}}
```