Terraform output does not work with v0.12
ret, out, err = self.output_cmd(*args, **kwargs)
if ret != 0:
return None
out = out.lstrip()
value = json.loads(out)
if name_provided and not full_value:
value = value['value']
code expects out to be dictionary. v0.12 might be having it as str