/
githubmirror
/
terraform
Обзор
Документация
Войти
/
githubmirror
/
terraform
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
internal/plans/changes_state.go
18 строк
604 B
Radek Simko
make copyrightfix
17 фев 2026, 16:56
17 фев 2026, 16:56
0fe906f
Код
Авторство
О чём код?
// Copyright IBM Corp. 2014, 2026 // SPDX-License-Identifier: BUSL-1.1 package plans import ( "github.com/hashicorp/terraform/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") }