terraform: remove unused var

This commit is contained in:
Mitchell Hashimoto 2014-06-24 13:08:56 -07:00
parent e392c349ef
commit 9d8c2790fa
1 changed files with 0 additions and 5 deletions

View File

@ -36,8 +36,6 @@ type Config struct {
Config *config.Config
Providers map[string]ResourceProviderFactory
Variables map[string]string
computedPlaceholder string
}
// New creates a new Terraform structure, initializes resource providers
@ -49,9 +47,6 @@ type Config struct {
func New(c *Config) (*Terraform, error) {
var errs []error
// Calculate the computed key placeholder
c.computedPlaceholder = "tf_computed_placeholder"
// Validate that all required variables have values
if err := smcVariables(c); err != nil {
errs = append(errs, err...)