fix /opentf links (#435)

Signed-off-by: Roman Grinovski <roman.grinovski@gmail.com>
This commit is contained in:
Roman Grinovski 2023-09-18 15:14:29 +02:00 committed by GitHub
parent b65a5fd7a8
commit 91b8aba85f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

@ -67,7 +67,7 @@ The following options change how the apply command executes and reports on the a
variable values to continue. To enable this flag, you must also either enable
the `-auto-approve` flag or specify a previously-saved plan.
[machine-readable-ui]: /opentf/internals/machine-readable-ui
[machine-readable-ui]: /docs/internals/machine-readable-ui
- `-lock=false` - Don't hold a state lock during the operation. This is
dangerous if others might concurrently run commands against the same

View File

@ -289,7 +289,7 @@ The available options are:
This implies `-input=false`, so the configuration must have no unassigned
variable values to continue.
[machine-readable-ui]: /opentf/internals/machine-readable-ui
[machine-readable-ui]: /docs/internals/machine-readable-ui
* `-lock=false` - Don't hold a state lock during the operation. This is
dangerous if others might concurrently run commands against the same

View File

@ -29,7 +29,7 @@ The OpenTF language uses the following types for its values:
Strings, numbers, and bools are sometimes called _primitive types._ Lists and sets are forms
of tuples. Maps are a form of objects. Tuples and maps are sometimes called _complex types,_
_structural types,_ or _collection types._ See
[Type Constraints](/opentf/language/expressions/type-constraints) for a more detailed
[Type Constraints](/docs/language/expressions/type-constraints) for a more detailed
description of complex types.
Finally, there is one special value that has _no_ type:

View File

@ -120,7 +120,7 @@ are mapped as follows:
| Array | Each element is mapped per this table, producing a `tuple(...)` value with suitable element types. |
| Null | A literal `null`. |
[string template]: /opentf/language/expressions/strings#string-templates
[string template]: /docs/language/expressions/strings#string-templates
When a JSON string is encountered in a location where arbitrary expressions are
expected, its value is first parsed as a [string template][]