diff --git a/website/docs/configuration/expressions.html.md b/website/docs/configuration/expressions.html.md index 560b5c014..c9e9afd04 100644 --- a/website/docs/configuration/expressions.html.md +++ b/website/docs/configuration/expressions.html.md @@ -23,6 +23,10 @@ Terraform's types are `string`, `number`, `bool`, `list`, `tuple`, `map`, This information has moved to [Types and Values](/docs/configuration/expressions/types.html). +
+ + + @@ -38,6 +42,10 @@ You can refer to certain values by name, like `var.some_variable` or This information has moved to [References to Values](/docs/configuration/expressions/references.html). +
+ + + @@ -51,6 +59,10 @@ numbers (`+`) or comparing two values to get a bool (`==`, `>=`, etc.). This information has moved to [Operators](/docs/configuration/expressions/references.html). +
+ + + ## Conditional Expressions The `condition ? true_val : false_val` expression chooses between two @@ -59,6 +71,10 @@ expressions based on a bool condition. This information has moved to [Conditional Expressions](/docs/configuration/expressions/conditionals.html). +
+ + + @@ -69,6 +85,10 @@ Terraform's functions can be called like `function_name(arg1, arg2)`. This information has moved to [Function Calls](/docs/configuration/expressions/function-calls.html). +
+ + + ## `for` Expressions @@ -79,6 +99,10 @@ value into another complex type value. This information has moved to [For Expressions](/docs/configuration/expressions/for.html). +
+ + + @@ -90,6 +114,10 @@ collections. This information has moved to [Splat Expressions](/docs/configuration/expressions/splat.html). +
+ + + @@ -101,6 +129,10 @@ except it creates multiple repeatable nested blocks instead of a complex value. This information has moved to [Dynamic Blocks](/docs/configuration/expressions/dynamic-blocks.html). +
+ + + @@ -121,3 +153,5 @@ Strings can also include escape sequences like `\n`, interpolation sequences This information has moved to [Strings and Templates](/docs/configuration/expressions/strings.html). + +
diff --git a/website/docs/configuration/modules.html.md b/website/docs/configuration/modules.html.md index 4af54dcc7..d5575436b 100644 --- a/website/docs/configuration/modules.html.md +++ b/website/docs/configuration/modules.html.md @@ -20,6 +20,10 @@ pages. This information has moved to [Module Blocks](/docs/configuration/blocks/modules/syntax.html). +
+ + + ## Multiple Instances with `count` and `for_each` @@ -28,6 +32,10 @@ This information has moved to [`count`](/docs/configuration/meta-arguments/count.html) and [`for_each`](/docs/configuration/meta-arguments/for_each.html). +
+ + + @@ -42,3 +50,5 @@ This information has moved to (for users of re-usable modules) and [Providers Within Modules](/docs/modules/providers.html) (for module developers). + +
diff --git a/website/docs/configuration/resources.html.md b/website/docs/configuration/resources.html.md index 4c3942c5c..f4b767776 100644 --- a/website/docs/configuration/resources.html.md +++ b/website/docs/configuration/resources.html.md @@ -21,6 +21,10 @@ pages. This information has moved to [Resource Blocks](/docs/configuration/blocks/resources/syntax.html). +
+ + + @@ -31,9 +35,24 @@ This information has moved to This information has moved to [Resource Behavior](/docs/configuration/blocks/resources/behavior.html). +
+ + + ## Resource Meta-Arguments -Each resource meta-argument has moved to its own page. +Each resource meta-argument has moved to its own page: + +- [`depends_on`](/docs/configuration/meta-arguments/depends_on.html) +- [`count`](/docs/configuration/meta-arguments/count.html) +- [`for_each`](/docs/configuration/meta-arguments/for_each.html) +- [`provider`](/docs/configuration/meta-arguments/resource-provider.html) +- [`lifecycle`](/docs/configuration/meta-arguments/lifecycle.html) +- [Provisioners](/docs/configuration/blocks/resources/provisioners/index.html) + +
+ + @@ -42,6 +61,10 @@ Each resource meta-argument has moved to its own page. This information has moved to [`depends_on`](/docs/configuration/meta-arguments/depends_on.html). +
+ + + @@ -53,6 +76,10 @@ This information has moved to This information has moved to [`count`](/docs/configuration/meta-arguments/count.html). +
+ + + @@ -64,6 +91,10 @@ This information has moved to This information has moved to [`for_each`](/docs/configuration/meta-arguments/for_each.html). +
+ + + ### `provider` @@ -71,6 +102,10 @@ This information has moved to This information has moved to [`provider`](/docs/configuration/meta-arguments/resource-provider.html). +
+ + + ### `lifecycle` @@ -78,9 +113,15 @@ This information has moved to This information has moved to [`lifecycle`](/docs/configuration/meta-arguments/lifecycle.html). +
+ + + ### Provisioners This information has moved to [Provisioners](/docs/configuration/blocks/resources/provisioners/index.html). + +