mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 18:01:01 -06:00
ebcf7455eb
* Rename module name from "github.com/hashicorp/terraform" to "github.com/placeholderplaceholderplaceholder/opentf". Signed-off-by: Jakub Martin <kubam@spacelift.io> * Gofmt. Signed-off-by: Jakub Martin <kubam@spacelift.io> * Regenerate protobuf. Signed-off-by: Jakub Martin <kubam@spacelift.io> * Fix comments. Signed-off-by: Jakub Martin <kubam@spacelift.io> * Undo issue and pull request link changes. Signed-off-by: Jakub Martin <kubam@spacelift.io> * Undo comment changes. Signed-off-by: Jakub Martin <kubam@spacelift.io> * Fix comment. Signed-off-by: Jakub Martin <kubam@spacelift.io> * Undo some link changes. Signed-off-by: Jakub Martin <kubam@spacelift.io> * make generate && make protobuf Signed-off-by: Jakub Martin <kubam@spacelift.io> --------- Signed-off-by: Jakub Martin <kubam@spacelift.io>
19 lines
623 B
Go
19 lines
623 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package plans
|
|
|
|
import (
|
|
"github.com/placeholderplaceholderplaceholder/opentf/internal/states"
|
|
)
|
|
|
|
// PlannedState merges the set of changes described by the receiver into the
|
|
// given prior state to produce the planned result state.
|
|
//
|
|
// The result is an approximation of the state as it would exist after
|
|
// applying these changes, omitting any values that cannot be determined until
|
|
// the changes are actually applied.
|
|
func (c *Changes) PlannedState(prior *states.State) (*states.State, error) {
|
|
panic("Changes.PlannedState not yet implemented")
|
|
}
|