blob: 890b25e694c7b00712c2bad0d536903809828894 [file] [log] [blame]
package tfconfig
// Output represents a single output from a Terraform module.
type Output struct {
Name string `json:"name"`
Description string `json:"description,omitempty"`
Pos SourcePos `json:"pos"`
}