terraform/website/docs/cli/commands/version.html.md

1.5 KiB

layout page_title sidebar_current description
docs Command: version docs-commands-version The `terraform version` command displays the version of Terraform and all installed plugins.

Command: version

The terraform version displays the current version of Terraform and all installed plugins.

Usage

Usage: terraform version [options]

With no additional arguments, version will display the version of Terraform, the platform it's installed on, installed providers, and the results of upgrade and security checks unless disabled.

This command has one optional flag:

  • -json - If specified, the version information is formatted as a JSON object, and no upgrade or security information is included.

-> Note: Platform information was added to the version command in Terraform 0.15.

Example

Basic usage, with upgrade and security information shown if relevant:

$ terraform version
Terraform v0.15.0
on darwin_amd64
+ provider registry.terraform.io/hashicorp/null v3.0.0

Your version of Terraform is out of date! The latest version
is X.Y.Z. You can update by downloading from https://www.terraform.io/downloads.html

As JSON:

$ terraform version -json
{
  "terraform_version": "0.15.0",
  "platform": "darwin_amd64",
  "provider_selections": {
    "registry.terraform.io/hashicorp/null": "3.0.0"
  },
  "terraform_outdated": true
}