Adjust mentions of terraform in internal/plans

This commit is contained in:
RLRabinowitz
2023-08-23 12:34:03 +03:00
parent 9ef50b3f05
commit 27e5417752
13 changed files with 36 additions and 36 deletions

View File

@@ -10,7 +10,7 @@ import (
"github.com/placeholderplaceholderplaceholder/opentf/internal/states"
)
// Changes describes various actions that Terraform will attempt to take if
// Changes describes various actions that OpenTF will attempt to take if
// the corresponding plan is applied.
//
// A Changes object can be rendered into a visual diff (by the caller, using
@@ -244,7 +244,7 @@ type ResourceInstanceChange struct {
RequiredReplace cty.PathSet
// Private allows a provider to stash any extra data that is opaque to
// Terraform that relates to this change. Terraform will save this
// OpenTF that relates to this change. OpenTF will save this
// byte-for-byte and return it to the provider in the apply call.
Private []byte
}
@@ -281,7 +281,7 @@ func (rc *ResourceInstanceChange) Moved() bool {
// Simplify will, where possible, produce a change with a simpler action than
// the receiever given a flag indicating whether the caller is dealing with
// a normal apply or a destroy. This flag deals with the fact that Terraform
// a normal apply or a destroy. This flag deals with the fact that OpenTF
// Core uses a specialized graph node type for destroying; only that
// specialized node should set "destroying" to true.
//