mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-23 23:50:12 -06:00
cb2e9119aa
Signed-off-by: namgyalangmo <75657887+namgyalangmo@users.noreply.github.com>
43 lines
1.3 KiB
Go
43 lines
1.3 KiB
Go
// Copyright (c) The OpenTofu Authors
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
// Copyright (c) 2023 HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package tofu
|
|
|
|
import (
|
|
"log"
|
|
|
|
"github.com/opentofu/opentofu/internal/configs"
|
|
"github.com/opentofu/opentofu/internal/plans"
|
|
"github.com/opentofu/opentofu/internal/states"
|
|
"github.com/opentofu/opentofu/internal/tfdiags"
|
|
)
|
|
|
|
// Refresh is a vestigial operation that is equivalent to call to Plan and
|
|
// then taking the prior state of the resulting plan.
|
|
//
|
|
// We retain this only as a measure of semi-backward-compatibility for
|
|
// automation relying on the "tofu refresh" subcommand. The modern way
|
|
// to get this effect is to create and then apply a plan in the refresh-only
|
|
// mode.
|
|
func (c *Context) Refresh(config *configs.Config, prevRunState *states.State, opts *PlanOpts) (*states.State, tfdiags.Diagnostics) {
|
|
if opts == nil {
|
|
// This fallback is only here for tests, not for real code.
|
|
opts = &PlanOpts{
|
|
Mode: plans.NormalMode,
|
|
}
|
|
}
|
|
if opts.Mode != plans.NormalMode {
|
|
panic("can only Refresh in the normal planning mode")
|
|
}
|
|
|
|
log.Printf("[DEBUG] Refresh is really just plan now, so creating a %s plan", opts.Mode)
|
|
p, diags := c.Plan(config, prevRunState, opts)
|
|
if diags.HasErrors() {
|
|
return nil, diags
|
|
}
|
|
|
|
return p.PriorState, diags
|
|
}
|