2018-06-20 01:03:59 +02:00
|
|
|
package plans
|
|
|
|
|
|
|
|
import (
|
2021-05-17 21:43:35 +02:00
|
|
|
"github.com/hashicorp/terraform/internal/states"
|
2018-06-20 01:03:59 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// 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")
|
|
|
|
}
|