pyventory icon indicating copy to clipboard operation
pyventory copied to clipboard

Lists containing maps should have `type="map"` defined for Terrafom

Open lig opened this issue 7 years ago • 0 comments

actual

        "asset_name__var_name": {
            "type": "list",
            "default": [
                {
                    "foo": "abc",
                    "bar": "xyz"
                }
            ]
        }

expected

        "asset_name__var_name": {
            "type": "map",
            "default": [
                {
                    "foo": "abc",
                    "bar": "xyz"
                }
            ]
        }

lig avatar Mar 23 '18 10:03 lig