aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/hashicorp/terraform/plans/changes_state.go
blob: 543e6c2bd89dbf28bd8566e91f61f84411ae9898 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package plans

import (
	"github.com/hashicorp/terraform/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")
}