Migrating links to new format

This commit is contained in:
Ashlee Boyer
2023-02-23 12:55:56 -05:00
parent c5d0bd40b9
commit 32f7b8ebd0
243 changed files with 1126 additions and 1126 deletions

View File

@@ -7,7 +7,7 @@ description: >-
# Built-in Functions
> **Hands-on:** Try the [Perform Dynamic Operations with Functions](https://learn.hashicorp.com/tutorials/terraform/functions?in=terraform/configuration-language&utm_source=WEBSITE&utm_medium=WEB_IO&utm_offer=ARTICLE_PAGE&utm_content=DOCS) tutorial.
> **Hands-on:** Try the [Perform Dynamic Operations with Functions](/terraform/tutorials/configuration-language/functions?utm_source=WEBSITE&utm_medium=WEB_IO&utm_offer=ARTICLE_PAGE&utm_content=DOCS) tutorial.
The Terraform language includes a number of built-in functions that you can
call from within expressions to transform and combine values. The general
@@ -19,7 +19,7 @@ max(5, 12, 9)
```
For more details on syntax, see
[_Function Calls_](/language/expressions/function-calls)
[_Function Calls_](/terraform/language/expressions/function-calls)
in the Expressions section.
The Terraform language does not support user-defined functions, and so only
@@ -27,7 +27,7 @@ the functions built in to the language are available for use. The documentation
You can experiment with the behavior of Terraform's built-in functions from
the Terraform expression console, by running
[the `terraform console` command](/cli/commands/console):
[the `terraform console` command](/terraform/cli/commands/console):
```
> max(5, 12, 9)