24 lines
511 B
Go
24 lines
511 B
Go
|
package local
|
||
|
|
||
|
import (
|
||
|
"github.com/hashicorp/terraform/backend"
|
||
|
)
|
||
|
|
||
|
// backend.CLI impl.
|
||
|
func (b *Local) CLIInit(opts *backend.CLIOpts) error {
|
||
|
b.CLI = opts.CLI
|
||
|
b.CLIColor = opts.CLIColor
|
||
|
b.ContextOpts = opts.ContextOpts
|
||
|
b.OpInput = opts.Input
|
||
|
b.OpValidation = opts.Validation
|
||
|
|
||
|
// Only configure state paths if we didn't do so via the configure func.
|
||
|
if b.StatePath == "" {
|
||
|
b.StatePath = opts.StatePath
|
||
|
b.StateOutPath = opts.StateOutPath
|
||
|
b.StateBackupPath = opts.StateBackupPath
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|