From 9d8c2790fa440bcaef0ab89b2f26cc981db0854d Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Tue, 24 Jun 2014 13:08:56 -0700 Subject: [PATCH] terraform: remove unused var --- terraform/terraform.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/terraform/terraform.go b/terraform/terraform.go index 282ee53eef..f301d68022 100644 --- a/terraform/terraform.go +++ b/terraform/terraform.go @@ -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...)