InterviewSolution
Saved Bookmarks
| 1. |
Explain the command terraform version in the context of Terraform. |
|
Answer» The terraform version command shows the current Terraform version as well as any INSTALLED plugins. Syntax: terraform version [options] UNLESS DISABLED, the version will display the Terraform version, the platform it's installed on, installed providers, and the results of upgrade and security checks with no EXTRA arguments. There is one optional flag for this command: If you SPECIFY -json, the version information is formatted as a JSON object, with no upgrade or security information. |
|