Merge pull request #13532 from djoos/patch-1

Fix for minor typo
This commit is contained in:
Jake Champlin 2017-04-11 10:50:20 -04:00 committed by GitHub
commit 1aa08b0519
1 changed files with 2 additions and 2 deletions

View File

@ -56,7 +56,7 @@ func (m *Meta) backendMigrateState(opts *backendMigrateOpts) error {
opts.twoEnv = backend.DefaultStateName opts.twoEnv = backend.DefaultStateName
opts.force = m.forceInitCopy opts.force = m.forceInitCopy
// Determine migration behavior based on whether the source/destionation // Determine migration behavior based on whether the source/destination
// supports multi-state. // supports multi-state.
switch { switch {
// Single-state to single-state. This is the easiest case: we just // Single-state to single-state. This is the easiest case: we just
@ -441,7 +441,7 @@ type backendMigrateOpts struct {
const errMigrateLoadStates = ` const errMigrateLoadStates = `
Error inspecting state in %q: %s Error inspecting state in %q: %s
Prior to changing backends, Terraform inspects the source and destionation Prior to changing backends, Terraform inspects the source and destination
states to determine what kind of migration steps need to be taken, if any. 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 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. destination remain unmodified. Please resolve the above error and try again.