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: website/docs/cli/commands/plan.mdx
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ to be taken.
33
33
If you are using Terraform directly in an interactive terminal and you expect
34
34
to apply the changes Terraform proposes, you can alternatively run
35
35
[`terraform apply`](/terraform/cli/commands/apply) directly. By default, the "apply" command
36
-
automatically generates a new plan and prompts for you to approve it.
36
+
automatically generates a new plan and prompts you to approve it.
37
37
38
38
You can use the optional `-out=FILE` option to save the generated plan to a
39
39
file on disk, which you can later execute by passing the file to
@@ -132,7 +132,7 @@ In addition to alternate [planning modes](#planning-modes), there are several op
132
132
resource instance with the given address. This is helpful when one or more remote objects have become degraded, and you can use replacement objects with the same configuration to align with immutable infrastructure patterns. Terraform will use a "replace" action if the specified resource would normally cause an "update" action or no action at all. Include this option multiple times to replace several objects at once. You cannot use `-replace` with the `-destroy` option, and it is only available from Terraform v0.15.2 onwards. For earlier versions, use [`terraform taint`](/terraform/cli/commands/taint) to achieve a similar result.
133
133
134
134
-`-target=ADDRESS` - Instructs Terraform to focus its planning efforts only
135
-
on resource instances which match the given address and on any objects that
135
+
on resource instances that match the given address and on any objects that
136
136
those instances depend on.
137
137
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.
@@ -161,8 +161,8 @@ root module.
161
161
162
162
However, to do so will require writing a command line that is parsable both
163
163
by your chosen command line shell _and_ Terraform, which can be complicated
164
-
for expressions involving lots of quotes and escape sequences. In most cases
165
-
we recommend using the `-var-file` option instead, and write your actual values
164
+
for expressions involving lots of quotes and escape sequences. In most cases,
165
+
we recommend using the `-var-file` option instead, and writing your actual values
166
166
in a separate file so that Terraform can parse them directly, rather than
0 commit comments