github.com/cycloidio/terraform@v1.1.10-0.20220513142504-76d5c768dc63/plans/changes_state.go (about) 1 package plans 2 3 import ( 4 "github.com/cycloidio/terraform/states" 5 ) 6 7 // PlannedState merges the set of changes described by the receiver into the 8 // given prior state to produce the planned result state. 9 // 10 // The result is an approximation of the state as it would exist after 11 // applying these changes, omitting any values that cannot be determined until 12 // the changes are actually applied. 13 func (c *Changes) PlannedState(prior *states.State) (*states.State, error) { 14 panic("Changes.PlannedState not yet implemented") 15 }