Package terraform provides a function to read Terraform output.
ReadOutput runs `terraform output` on the given directory and returns
the parsed result.
type Output struct {
Type string `json:"type"`
Sensitive bool `json:"sensitive"`
Value interface{} `json:"value"`
}
Output describes a single output value.