blob: 31de07740c63e18aba397cff4d83455b9606fa5b [file]
// Copyright IBM Corp. 2019, 2026
// SPDX-License-Identifier: MPL-2.0
package tfjson
// VersionOutput represents output from the version -json command
// added in v0.13
type VersionOutput struct {
FormatVersion string `json:"format_version"` // Added in v1.17
Version string `json:"terraform_version"`
Revision string `json:"terraform_revision"`
Platform string `json:"platform,omitempty"`
ProviderSelections map[string]string `json:"provider_selections"`
Outdated bool `json:"terraform_outdated"`
}