From 3acb7dc1540a8ea9d705285d4740b927b3ada372 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 24 Jul 2014 07:17:30 -0700 Subject: [PATCH] terraform: register another gob type we use --- terraform/plan.go | 1 + 1 file changed, 1 insertion(+) diff --git a/terraform/plan.go b/terraform/plan.go index 739561f1f..05df1672f 100644 --- a/terraform/plan.go +++ b/terraform/plan.go @@ -14,6 +14,7 @@ import ( func init() { gob.Register(make([]interface{}, 0)) gob.Register(make([]map[string]interface{}, 0)) + gob.Register(make(map[string]string)) } // PlanOpts are the options used to generate an execution plan for