You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/terraform/v1.12.x/docs/cli/commands/plan.mdx
+11-10Lines changed: 11 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -5,10 +5,10 @@ description: >-
5
5
changes that Terraform will make to your infrastructure.
6
6
---
7
7
8
-
# `terraform plan` command
8
+
# `terraform plan` command
9
9
10
10
The `terraform plan` command creates an execution plan, which lets you preview
11
-
the changes that Terraform plans to make to your infrastructure.
11
+
the changes that Terraform plans to make to your infrastructure.
12
12
13
13
## Introduction
14
14
By default, Terraform performs the following operations when it creates a plan:
@@ -138,25 +138,25 @@ In addition to alternate [planning modes](#planning-modes), there are several op
138
138
-> **Note:** Use `-target=ADDRESS` in exceptional circumstances only, such as recovering from mistakes or working around Terraform limitations. Refer to [Resource Targeting](#resource-targeting) for more details.
139
139
140
140
-`-var 'NAME=VALUE'` - Sets a value for a single
141
-
[input variable](/terraform/language/values/variables) declared in the
141
+
[input variable](/terraform/language/block/variable) declared in the
142
142
root module of the configuration. Use this option multiple times to set
143
143
more than one variable. Refer to
144
144
[Input Variables on the Command Line](#input-variables-on-the-command-line) for more information.
Copy file name to clipboardExpand all lines: content/terraform/v1.12.x/docs/cli/workspaces/index.mdx
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ Use the [`terraform workspace list`](/terraform/cli/commands/workspace/list), [`
21
21
22
22
Use [the `terraform workspace select` command](/terraform/cli/commands/workspace/select) to change the currently selected workspace. For a given working directory, you can only select one workspace at a time. Most Terraform commands only interact with the currently selected workspace. This includes [provisioning](/terraform/cli/run) and [state manipulation](/terraform/cli/state).
23
23
24
-
When you provision infrastructure in each workspace, you usually need to manually specify different [input variables](/terraform/language/values/variables) to differentiate each collection. For example, you might deploy test infrastructure to a different region.
24
+
When you provision infrastructure in each workspace, you usually need to manually specify different [input variables](/terraform/language/block/variable) to differentiate each collection. For example, you might deploy test infrastructure to a different region.
Copy file name to clipboardExpand all lines: content/terraform/v1.12.x/docs/language/block/output.mdx
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -158,7 +158,7 @@ Passing output values between child modules and the root module is useful for ma
158
158
The following ephemeral contexts can set values for output blocks with the `ephemeral` argument, and they can also reference output blocks with the `ephemeral` argument:
159
159
- Another child module's ephemeral `output` block
160
160
- A [write-only argument](/terraform/language/resources/ephemeral/write-only)
161
-
-[Variables with the `ephemeral` argument](/terraform/language/values/variables#exclude-values-from-state)
161
+
-[Variables with the `ephemeral` argument](/terraform/language/block/variable#ephemeral)
0 commit comments