From 8c330d9e4d5f4805b931a2a5b925fda8537cc868 Mon Sep 17 00:00:00 2001 From: Jack Pearkes Date: Wed, 2 Jul 2014 16:17:26 -0700 Subject: [PATCH] terraform: register gob type for array --- terraform/plan.go | 1 + 1 file changed, 1 insertion(+) diff --git a/terraform/plan.go b/terraform/plan.go index 13f468e3d..59cfe1d56 100644 --- a/terraform/plan.go +++ b/terraform/plan.go @@ -13,6 +13,7 @@ import ( func init() { gob.Register(make([]map[string]interface{}, 0)) + gob.Register(make([]interface{}, 0)) } // PlanOpts are the options used to generate an execution plan for