terraform: register a type

This commit is contained in:
Mitchell Hashimoto 2014-08-04 22:08:55 -07:00
parent 038cca291e
commit 258a7311ce
1 changed files with 1 additions and 0 deletions

View File

@ -14,6 +14,7 @@ import (
func init() {
gob.Register(make([]interface{}, 0))
gob.Register(make([]map[string]interface{}, 0))
gob.Register(make(map[string]interface{}))
gob.Register(make(map[string]string))
}