blob: 145affd7776afb21f3e564a9be1fa7e49d44dc8e [file] [log] [blame]
// Copyright IBM Corp. 2019, 2025
// SPDX-License-Identifier: MPL-2.0
package tfjson
// VersionOutput represents output from the version -json command
// added in v0.13
type VersionOutput struct {
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"`
}