2017-01-19 05:50:04 +01:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
2017-04-01 21:42:13 +02:00
|
|
|
"context"
|
2017-03-30 21:53:21 +02:00
|
|
|
"errors"
|
2017-01-19 05:50:04 +01:00
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2017-03-01 21:35:59 +01:00
|
|
|
"sort"
|
2017-01-19 05:50:04 +01:00
|
|
|
"strings"
|
|
|
|
|
2017-03-01 19:59:17 +01:00
|
|
|
"github.com/hashicorp/terraform/backend"
|
2017-04-01 20:58:19 +02:00
|
|
|
"github.com/hashicorp/terraform/command/clistate"
|
2017-01-19 05:50:04 +01:00
|
|
|
"github.com/hashicorp/terraform/state"
|
|
|
|
"github.com/hashicorp/terraform/terraform"
|
|
|
|
)
|
|
|
|
|
|
|
|
// backendMigrateState handles migrating (copying) state from one backend
|
|
|
|
// to another. This function handles asking the user for confirmation
|
|
|
|
// as well as the copy itself.
|
|
|
|
//
|
|
|
|
// This function can handle all scenarios of state migration regardless
|
|
|
|
// of the existence of state in either backend.
|
|
|
|
//
|
|
|
|
// After migrating the state, the existing state in the first backend
|
|
|
|
// remains untouched.
|
2017-02-09 21:35:49 +01:00
|
|
|
//
|
|
|
|
// This will attempt to lock both states for the migration.
|
2017-01-19 05:50:04 +01:00
|
|
|
func (m *Meta) backendMigrateState(opts *backendMigrateOpts) error {
|
2017-03-01 19:59:17 +01:00
|
|
|
// We need to check what the named state status is. If we're converting
|
|
|
|
// from multi-state to single-state for example, we need to handle that.
|
|
|
|
var oneSingle, twoSingle bool
|
|
|
|
oneStates, err := opts.One.States()
|
|
|
|
if err == backend.ErrNamedStatesNotSupported {
|
|
|
|
oneSingle = true
|
|
|
|
err = nil
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf(strings.TrimSpace(
|
|
|
|
errMigrateLoadStates), opts.OneType, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = opts.Two.States()
|
|
|
|
if err == backend.ErrNamedStatesNotSupported {
|
|
|
|
twoSingle = true
|
|
|
|
err = nil
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf(strings.TrimSpace(
|
|
|
|
errMigrateLoadStates), opts.TwoType, err)
|
|
|
|
}
|
|
|
|
|
2017-03-01 20:40:28 +01:00
|
|
|
// Setup defaults
|
|
|
|
opts.oneEnv = backend.DefaultStateName
|
|
|
|
opts.twoEnv = backend.DefaultStateName
|
2017-03-30 21:53:21 +02:00
|
|
|
opts.force = m.forceInitCopy
|
2017-03-01 20:40:28 +01:00
|
|
|
|
2017-04-11 14:04:36 +02:00
|
|
|
// Determine migration behavior based on whether the source/destination
|
2017-03-01 19:59:17 +01:00
|
|
|
// supports multi-state.
|
|
|
|
switch {
|
|
|
|
// Single-state to single-state. This is the easiest case: we just
|
|
|
|
// copy the default state directly.
|
|
|
|
case oneSingle && twoSingle:
|
|
|
|
return m.backendMigrateState_s_s(opts)
|
|
|
|
|
|
|
|
// Single-state to multi-state. This is easy since we just copy
|
|
|
|
// the default state and ignore the rest in the destination.
|
|
|
|
case oneSingle && !twoSingle:
|
|
|
|
return m.backendMigrateState_s_s(opts)
|
|
|
|
|
|
|
|
// Multi-state to single-state. If the source has more than the default
|
|
|
|
// state this is complicated since we have to ask the user what to do.
|
|
|
|
case !oneSingle && twoSingle:
|
|
|
|
// If the source only has one state and it is the default,
|
|
|
|
// treat it as if it doesn't support multi-state.
|
|
|
|
if len(oneStates) == 1 && oneStates[0] == backend.DefaultStateName {
|
|
|
|
return m.backendMigrateState_s_s(opts)
|
|
|
|
}
|
|
|
|
|
2017-03-01 20:34:45 +01:00
|
|
|
return m.backendMigrateState_S_s(opts)
|
2017-03-01 19:59:17 +01:00
|
|
|
|
|
|
|
// Multi-state to multi-state. We merge the states together (migrating
|
|
|
|
// each from the source to the destination one by one).
|
|
|
|
case !oneSingle && !twoSingle:
|
|
|
|
// If the source only has one state and it is the default,
|
|
|
|
// treat it as if it doesn't support multi-state.
|
|
|
|
if len(oneStates) == 1 && oneStates[0] == backend.DefaultStateName {
|
|
|
|
return m.backendMigrateState_s_s(opts)
|
|
|
|
}
|
|
|
|
|
2017-03-01 21:35:59 +01:00
|
|
|
return m.backendMigrateState_S_S(opts)
|
2017-03-01 19:59:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------
|
|
|
|
// State Migration Scenarios
|
|
|
|
//
|
|
|
|
// The functions below cover handling all the various scenarios that
|
|
|
|
// can exist when migrating state. They are named in an immediately not
|
|
|
|
// obvious format but is simple:
|
|
|
|
//
|
|
|
|
// Format: backendMigrateState_s1_s2[_suffix]
|
|
|
|
//
|
|
|
|
// When s1 or s2 is lower case, it means that it is a single state backend.
|
|
|
|
// When either is uppercase, it means that state is a multi-state backend.
|
|
|
|
// The suffix is used to disambiguate multiple cases with the same type of
|
|
|
|
// states.
|
|
|
|
//
|
|
|
|
//-------------------------------------------------------------------
|
|
|
|
|
2017-03-01 21:35:59 +01:00
|
|
|
// Multi-state to multi-state.
|
|
|
|
func (m *Meta) backendMigrateState_S_S(opts *backendMigrateOpts) error {
|
|
|
|
// Ask the user if they want to migrate their existing remote state
|
|
|
|
migrate, err := m.confirm(&terraform.InputOpts{
|
|
|
|
Id: "backend-migrate-multistate-to-multistate",
|
|
|
|
Query: fmt.Sprintf(
|
2017-05-31 00:06:13 +02:00
|
|
|
"Do you want to migrate all workspaces to %q?",
|
2017-03-01 21:35:59 +01:00
|
|
|
opts.TwoType),
|
|
|
|
Description: fmt.Sprintf(
|
|
|
|
strings.TrimSpace(inputBackendMigrateMultiToMulti),
|
|
|
|
opts.OneType, opts.TwoType),
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf(
|
|
|
|
"Error asking for state migration action: %s", err)
|
|
|
|
}
|
|
|
|
if !migrate {
|
|
|
|
return fmt.Errorf("Migration aborted by user.")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Read all the states
|
|
|
|
oneStates, err := opts.One.States()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf(strings.TrimSpace(
|
|
|
|
errMigrateLoadStates), opts.OneType, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sort the states so they're always copied alphabetically
|
|
|
|
sort.Strings(oneStates)
|
|
|
|
|
|
|
|
// Go through each and migrate
|
|
|
|
for _, name := range oneStates {
|
|
|
|
// Copy the same names
|
|
|
|
opts.oneEnv = name
|
|
|
|
opts.twoEnv = name
|
|
|
|
|
|
|
|
// Force it, we confirmed above
|
|
|
|
opts.force = true
|
|
|
|
|
|
|
|
// Perform the migration
|
|
|
|
if err := m.backendMigrateState_s_s(opts); err != nil {
|
|
|
|
return fmt.Errorf(strings.TrimSpace(
|
|
|
|
errMigrateMulti), name, opts.OneType, opts.TwoType, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-03-01 20:34:45 +01:00
|
|
|
// Multi-state to single state.
|
|
|
|
func (m *Meta) backendMigrateState_S_s(opts *backendMigrateOpts) error {
|
2017-05-31 02:13:43 +02:00
|
|
|
currentEnv := m.Workspace()
|
2017-03-01 20:40:28 +01:00
|
|
|
|
2017-03-30 21:53:21 +02:00
|
|
|
migrate := opts.force
|
2017-03-21 20:05:51 +01:00
|
|
|
if !migrate {
|
|
|
|
var err error
|
|
|
|
// Ask the user if they want to migrate their existing remote state
|
|
|
|
migrate, err = m.confirm(&terraform.InputOpts{
|
|
|
|
Id: "backend-migrate-multistate-to-single",
|
|
|
|
Query: fmt.Sprintf(
|
2017-05-31 00:06:13 +02:00
|
|
|
"Destination state %q doesn't support workspaces.\n"+
|
|
|
|
"Do you want to copy only your current workspace?",
|
2017-03-21 20:05:51 +01:00
|
|
|
opts.TwoType),
|
|
|
|
Description: fmt.Sprintf(
|
|
|
|
strings.TrimSpace(inputBackendMigrateMultiToSingle),
|
|
|
|
opts.OneType, opts.TwoType, currentEnv),
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf(
|
|
|
|
"Error asking for state migration action: %s", err)
|
|
|
|
}
|
2017-03-01 20:34:45 +01:00
|
|
|
}
|
2017-03-21 20:05:51 +01:00
|
|
|
|
2017-03-01 20:34:45 +01:00
|
|
|
if !migrate {
|
|
|
|
return fmt.Errorf("Migration aborted by user.")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Copy the default state
|
2017-03-01 20:40:28 +01:00
|
|
|
opts.oneEnv = currentEnv
|
2017-03-16 20:31:50 +01:00
|
|
|
|
|
|
|
// now switch back to the default env so we can acccess the new backend
|
2017-05-31 02:13:43 +02:00
|
|
|
m.SetWorkspace(backend.DefaultStateName)
|
2017-03-16 20:31:50 +01:00
|
|
|
|
2017-03-01 20:34:45 +01:00
|
|
|
return m.backendMigrateState_s_s(opts)
|
|
|
|
}
|
|
|
|
|
2017-03-01 19:59:17 +01:00
|
|
|
// Single state to single state, assumed default state name.
|
|
|
|
func (m *Meta) backendMigrateState_s_s(opts *backendMigrateOpts) error {
|
2017-03-01 20:40:28 +01:00
|
|
|
stateOne, err := opts.One.State(opts.oneEnv)
|
2017-03-01 19:59:17 +01:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf(strings.TrimSpace(
|
|
|
|
errMigrateSingleLoadDefault), opts.OneType, err)
|
|
|
|
}
|
|
|
|
if err := stateOne.RefreshState(); err != nil {
|
|
|
|
return fmt.Errorf(strings.TrimSpace(
|
|
|
|
errMigrateSingleLoadDefault), opts.OneType, err)
|
|
|
|
}
|
|
|
|
|
2017-03-01 20:40:28 +01:00
|
|
|
stateTwo, err := opts.Two.State(opts.twoEnv)
|
2017-03-01 19:59:17 +01:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf(strings.TrimSpace(
|
|
|
|
errMigrateSingleLoadDefault), opts.TwoType, err)
|
|
|
|
}
|
|
|
|
if err := stateTwo.RefreshState(); err != nil {
|
|
|
|
return fmt.Errorf(strings.TrimSpace(
|
|
|
|
errMigrateSingleLoadDefault), opts.TwoType, err)
|
|
|
|
}
|
|
|
|
|
2017-03-30 21:53:21 +02:00
|
|
|
// Check if we need migration at all.
|
|
|
|
// This is before taking a lock, because they may also correspond to the same lock.
|
|
|
|
one := stateOne.State()
|
|
|
|
two := stateTwo.State()
|
|
|
|
|
|
|
|
// no reason to migrate if the state is already there
|
|
|
|
if one.Equal(two) {
|
|
|
|
// Equal isn't identical; it doesn't check lineage.
|
|
|
|
if one != nil && two != nil && one.Lineage == two.Lineage {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-01 21:42:13 +02:00
|
|
|
if m.stateLock {
|
|
|
|
lockCtx, cancel := context.WithTimeout(context.Background(), m.stateLockTimeout)
|
|
|
|
defer cancel()
|
2017-02-15 00:51:32 +01:00
|
|
|
|
2018-02-23 02:43:21 +01:00
|
|
|
unlockOne, err := clistate.Lock(lockCtx, stateOne, "migration", "source state", m.Ui, m.Colorize())
|
2017-04-01 21:42:13 +02:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Error locking source state: %s", err)
|
|
|
|
}
|
2018-02-23 02:43:21 +01:00
|
|
|
defer unlockOne(nil)
|
2017-02-09 21:35:49 +01:00
|
|
|
|
2018-02-23 02:43:21 +01:00
|
|
|
unlockTwo, err := clistate.Lock(lockCtx, stateTwo, "migration", "destination state", m.Ui, m.Colorize())
|
2017-04-01 21:42:13 +02:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Error locking destination state: %s", err)
|
|
|
|
}
|
2018-02-23 02:43:21 +01:00
|
|
|
defer unlockTwo(nil)
|
2017-02-09 21:35:49 +01:00
|
|
|
|
2017-03-30 21:53:21 +02:00
|
|
|
// We now own a lock, so double check that we have the version
|
|
|
|
// corresponding to the lock.
|
|
|
|
if err := stateOne.RefreshState(); err != nil {
|
|
|
|
return fmt.Errorf(strings.TrimSpace(
|
|
|
|
errMigrateSingleLoadDefault), opts.OneType, err)
|
|
|
|
}
|
|
|
|
if err := stateTwo.RefreshState(); err != nil {
|
|
|
|
return fmt.Errorf(strings.TrimSpace(
|
|
|
|
errMigrateSingleLoadDefault), opts.OneType, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
one = stateOne.State()
|
|
|
|
two = stateTwo.State()
|
|
|
|
}
|
2017-01-19 05:50:04 +01:00
|
|
|
|
2017-03-20 18:05:24 +01:00
|
|
|
// Clear the legacy remote state in both cases. If we're at the migration
|
|
|
|
// step then this won't be used anymore.
|
|
|
|
if one != nil {
|
|
|
|
one.Remote = nil
|
|
|
|
}
|
|
|
|
if two != nil {
|
|
|
|
two.Remote = nil
|
|
|
|
}
|
|
|
|
|
2017-03-01 19:59:17 +01:00
|
|
|
var confirmFunc func(state.State, state.State, *backendMigrateOpts) (bool, error)
|
2017-01-19 05:50:04 +01:00
|
|
|
switch {
|
|
|
|
// No migration necessary
|
|
|
|
case one.Empty() && two.Empty():
|
|
|
|
return nil
|
|
|
|
|
|
|
|
// No migration necessary if we're inheriting state.
|
|
|
|
case one.Empty() && !two.Empty():
|
|
|
|
return nil
|
|
|
|
|
|
|
|
// We have existing state moving into no state. Ask the user if
|
|
|
|
// they'd like to do this.
|
|
|
|
case !one.Empty() && two.Empty():
|
|
|
|
confirmFunc = m.backendMigrateEmptyConfirm
|
|
|
|
|
|
|
|
// Both states are non-empty, meaning we need to determine which
|
|
|
|
// state should be used and update accordingly.
|
|
|
|
case !one.Empty() && !two.Empty():
|
|
|
|
confirmFunc = m.backendMigrateNonEmptyConfirm
|
|
|
|
}
|
|
|
|
|
|
|
|
if confirmFunc == nil {
|
|
|
|
panic("confirmFunc must not be nil")
|
|
|
|
}
|
|
|
|
|
2017-03-01 21:35:59 +01:00
|
|
|
if !opts.force {
|
2017-03-30 21:53:21 +02:00
|
|
|
// Abort if we can't ask for input.
|
|
|
|
if !m.input {
|
2017-05-24 03:58:37 +02:00
|
|
|
return errors.New("error asking for state migration action: input disabled")
|
2017-03-30 21:53:21 +02:00
|
|
|
}
|
|
|
|
|
2017-03-01 21:35:59 +01:00
|
|
|
// Confirm with the user whether we want to copy state over
|
|
|
|
confirm, err := confirmFunc(stateOne, stateTwo, opts)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if !confirm {
|
|
|
|
return nil
|
|
|
|
}
|
2017-01-19 05:50:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Confirmed! Write.
|
2017-03-01 19:59:17 +01:00
|
|
|
if err := stateTwo.WriteState(one); err != nil {
|
2017-01-19 05:50:04 +01:00
|
|
|
return fmt.Errorf(strings.TrimSpace(errBackendStateCopy),
|
|
|
|
opts.OneType, opts.TwoType, err)
|
|
|
|
}
|
2017-03-01 19:59:17 +01:00
|
|
|
if err := stateTwo.PersistState(); err != nil {
|
2017-01-19 05:50:04 +01:00
|
|
|
return fmt.Errorf(strings.TrimSpace(errBackendStateCopy),
|
|
|
|
opts.OneType, opts.TwoType, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// And we're done.
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-03-01 19:59:17 +01:00
|
|
|
func (m *Meta) backendMigrateEmptyConfirm(one, two state.State, opts *backendMigrateOpts) (bool, error) {
|
2017-01-19 05:50:04 +01:00
|
|
|
inputOpts := &terraform.InputOpts{
|
2017-12-20 23:50:37 +01:00
|
|
|
Id: "backend-migrate-copy-to-empty",
|
|
|
|
Query: "Do you want to copy existing state to the new backend?",
|
2017-01-19 05:50:04 +01:00
|
|
|
Description: fmt.Sprintf(
|
|
|
|
strings.TrimSpace(inputBackendMigrateEmpty),
|
|
|
|
opts.OneType, opts.TwoType),
|
|
|
|
}
|
|
|
|
|
2017-12-18 17:38:51 +01:00
|
|
|
return m.confirm(inputOpts)
|
2017-01-19 05:50:04 +01:00
|
|
|
}
|
|
|
|
|
2017-03-01 19:59:17 +01:00
|
|
|
func (m *Meta) backendMigrateNonEmptyConfirm(
|
|
|
|
stateOne, stateTwo state.State, opts *backendMigrateOpts) (bool, error) {
|
2017-01-19 05:50:04 +01:00
|
|
|
// We need to grab both states so we can write them to a file
|
2017-03-01 19:59:17 +01:00
|
|
|
one := stateOne.State()
|
|
|
|
two := stateTwo.State()
|
2017-01-19 05:50:04 +01:00
|
|
|
|
|
|
|
// Save both to a temporary
|
|
|
|
td, err := ioutil.TempDir("", "terraform")
|
|
|
|
if err != nil {
|
|
|
|
return false, fmt.Errorf("Error creating temporary directory: %s", err)
|
|
|
|
}
|
|
|
|
defer os.RemoveAll(td)
|
|
|
|
|
|
|
|
// Helper to write the state
|
|
|
|
saveHelper := func(n, path string, s *terraform.State) error {
|
|
|
|
f, err := os.Create(path)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
|
|
|
|
return terraform.WriteState(s, f)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Write the states
|
|
|
|
onePath := filepath.Join(td, fmt.Sprintf("1-%s.tfstate", opts.OneType))
|
|
|
|
twoPath := filepath.Join(td, fmt.Sprintf("2-%s.tfstate", opts.TwoType))
|
|
|
|
if err := saveHelper(opts.OneType, onePath, one); err != nil {
|
|
|
|
return false, fmt.Errorf("Error saving temporary state: %s", err)
|
|
|
|
}
|
|
|
|
if err := saveHelper(opts.TwoType, twoPath, two); err != nil {
|
|
|
|
return false, fmt.Errorf("Error saving temporary state: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ask for confirmation
|
|
|
|
inputOpts := &terraform.InputOpts{
|
2017-12-20 23:50:37 +01:00
|
|
|
Id: "backend-migrate-to-backend",
|
|
|
|
Query: "Do you want to copy existing state to the new backend?",
|
2017-01-19 05:50:04 +01:00
|
|
|
Description: fmt.Sprintf(
|
|
|
|
strings.TrimSpace(inputBackendMigrateNonEmpty),
|
|
|
|
opts.OneType, opts.TwoType, onePath, twoPath),
|
|
|
|
}
|
|
|
|
|
|
|
|
// Confirm with the user that the copy should occur
|
2017-12-18 17:38:51 +01:00
|
|
|
return m.confirm(inputOpts)
|
2017-01-19 05:50:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type backendMigrateOpts struct {
|
|
|
|
OneType, TwoType string
|
2017-03-01 19:59:17 +01:00
|
|
|
One, Two backend.Backend
|
2017-03-01 20:40:28 +01:00
|
|
|
|
|
|
|
// Fields below are set internally when migrate is called
|
|
|
|
|
|
|
|
oneEnv string // source env
|
|
|
|
twoEnv string // dest env
|
2017-03-01 21:35:59 +01:00
|
|
|
force bool // if true, won't ask for confirmation
|
2017-01-19 05:50:04 +01:00
|
|
|
}
|
|
|
|
|
2017-03-01 19:59:17 +01:00
|
|
|
const errMigrateLoadStates = `
|
2017-12-20 23:50:37 +01:00
|
|
|
Error inspecting states in the %q backend:
|
|
|
|
%s
|
2017-03-01 19:59:17 +01:00
|
|
|
|
2017-04-11 14:04:36 +02:00
|
|
|
Prior to changing backends, Terraform inspects the source and destination
|
2017-03-01 19:59:17 +01:00
|
|
|
states to determine what kind of migration steps need to be taken, if any.
|
|
|
|
Terraform failed to load the states. The data in both the source and the
|
|
|
|
destination remain unmodified. Please resolve the above error and try again.
|
|
|
|
`
|
|
|
|
|
|
|
|
const errMigrateSingleLoadDefault = `
|
2017-12-20 23:50:37 +01:00
|
|
|
Error loading state:
|
|
|
|
%[2]s
|
2017-03-01 19:59:17 +01:00
|
|
|
|
2017-12-20 23:50:37 +01:00
|
|
|
Terraform failed to load the default state from the %[1]q backend.
|
2017-03-01 19:59:17 +01:00
|
|
|
State migration cannot occur unless the state can be loaded. Backend
|
|
|
|
modification and state migration has been aborted. The state in both the
|
|
|
|
source and the destination remain unmodified. Please resolve the
|
|
|
|
above error and try again.
|
|
|
|
`
|
|
|
|
|
2017-03-01 21:35:59 +01:00
|
|
|
const errMigrateMulti = `
|
2017-12-20 23:50:37 +01:00
|
|
|
Error migrating the workspace %q from the previous %q backend to the newly
|
|
|
|
configured %q backend:
|
|
|
|
%s
|
2017-03-01 21:35:59 +01:00
|
|
|
|
2017-05-31 00:06:13 +02:00
|
|
|
Terraform copies workspaces in alphabetical order. Any workspaces
|
|
|
|
alphabetically earlier than this one have been copied. Any workspaces
|
|
|
|
later than this haven't been modified in the destination. No workspaces
|
2017-03-01 21:35:59 +01:00
|
|
|
in the source state have been modified.
|
|
|
|
|
|
|
|
Please resolve the error above and run the initialization command again.
|
2017-05-31 00:06:13 +02:00
|
|
|
This will attempt to copy (with permission) all workspaces again.
|
2017-03-01 21:35:59 +01:00
|
|
|
`
|
|
|
|
|
2017-01-19 05:50:04 +01:00
|
|
|
const errBackendStateCopy = `
|
2017-12-20 23:50:37 +01:00
|
|
|
Error copying state from the previous %q backend to the newly configured %q backend:
|
|
|
|
%s
|
2017-01-19 05:50:04 +01:00
|
|
|
|
2017-12-20 23:50:37 +01:00
|
|
|
The state in the previous backend remains intact and unmodified. Please resolve
|
|
|
|
the error above and try again.
|
2017-01-19 05:50:04 +01:00
|
|
|
`
|
|
|
|
|
|
|
|
const inputBackendMigrateEmpty = `
|
2017-12-20 23:50:37 +01:00
|
|
|
Pre-existing state was found while migrating the previous %q backend to the
|
|
|
|
newly configured %q backend. No existing state was found in the newly
|
|
|
|
configured %[2]q backend. Do you want to copy this state to the new %[2]q
|
|
|
|
backend? Enter "yes" to copy and "no" to start with an empty state.
|
2017-01-19 05:50:04 +01:00
|
|
|
`
|
|
|
|
|
|
|
|
const inputBackendMigrateNonEmpty = `
|
2017-12-20 23:50:37 +01:00
|
|
|
Pre-existing state was found while migrating the previous %q backend to the
|
|
|
|
newly configured %q backend. An existing non-empty state already exists in
|
|
|
|
the new backend. The two states have been saved to temporary files that will be
|
|
|
|
removed after responding to this query.
|
2017-01-19 05:50:04 +01:00
|
|
|
|
2017-12-20 23:50:37 +01:00
|
|
|
Previous (type %[1]q): %[3]s
|
|
|
|
New (type %[2]q): %[4]s
|
2017-01-19 05:50:04 +01:00
|
|
|
|
2017-12-20 23:50:37 +01:00
|
|
|
Do you want to overwrite the state in the new backend with the previous state?
|
|
|
|
Enter "yes" to copy and "no" to start with the existing state in the newly
|
|
|
|
configured %[2]q backend.
|
2017-01-19 05:50:04 +01:00
|
|
|
`
|
2017-03-01 20:34:45 +01:00
|
|
|
|
|
|
|
const inputBackendMigrateMultiToSingle = `
|
2017-12-20 23:50:37 +01:00
|
|
|
The existing %[1]q backend supports workspaces and you currently are
|
|
|
|
using more than one. The newly configured %[2]q backend doesn't support
|
|
|
|
workspaces. If you continue, Terraform will copy your current workspace %[3]q
|
|
|
|
to the default workspace in the target backend. Your existing workspaces in the
|
|
|
|
source backend won't be modified. If you want to switch workspaces, back them
|
|
|
|
up, or cancel altogether, answer "no" and Terraform will abort.
|
2017-03-01 20:34:45 +01:00
|
|
|
`
|
2017-03-01 21:35:59 +01:00
|
|
|
|
|
|
|
const inputBackendMigrateMultiToMulti = `
|
2017-12-20 23:50:37 +01:00
|
|
|
Both the existing %[1]q backend and the newly configured %[2]q backend support
|
2017-05-31 00:06:13 +02:00
|
|
|
workspaces. When migrating between backends, Terraform will copy all
|
|
|
|
workspaces (with the same names). THIS WILL OVERWRITE any conflicting
|
2017-03-01 21:35:59 +01:00
|
|
|
states in the destination.
|
|
|
|
|
2017-05-31 00:06:13 +02:00
|
|
|
Terraform initialization doesn't currently migrate only select workspaces.
|
|
|
|
If you want to migrate a select number of workspaces, you must manually
|
2017-03-01 21:35:59 +01:00
|
|
|
pull and push those states.
|
|
|
|
|
|
|
|
If you answer "yes", Terraform will migrate all states. If you answer
|
|
|
|
"no", Terraform will abort.
|
|
|
|
`
|