v0.3.12: Merge pull request #50 from hashicorp/cs/empty-map-value
This release fixes an issue where empty maps where being converted to map[interface{}]interface{}
, which therefore was failing to marshal for the json
import. From this release, empty maps will be converted to map[string]interface{}
to provide safety for such imports.