Merge pull request #6033 from meteor/glasser/delete-config
command: delete unused class
This commit is contained in:
commit
70c65fb00a
|
@ -1,25 +0,0 @@
|
|||
package command
|
||||
|
||||
import (
|
||||
"github.com/hashicorp/terraform/terraform"
|
||||
"github.com/mitchellh/cli"
|
||||
)
|
||||
|
||||
// Config is a structure used to configure many commands with Terraform
|
||||
// configurations.
|
||||
type Config struct {
|
||||
Hooks []terraform.Hook
|
||||
Providers map[string]terraform.ResourceProviderFactory
|
||||
Ui cli.Ui
|
||||
}
|
||||
|
||||
func (c *Config) ContextOpts() *terraform.ContextOpts {
|
||||
hooks := make([]terraform.Hook, len(c.Hooks)+1)
|
||||
copy(hooks, c.Hooks)
|
||||
hooks[len(c.Hooks)] = &UiHook{Ui: c.Ui}
|
||||
|
||||
return &terraform.ContextOpts{
|
||||
Hooks: hooks,
|
||||
Providers: c.Providers,
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue