-
Notifications
You must be signed in to change notification settings - Fork 34
Description
We're moving to TF 0.13.5 from 0.12.23 and our circleci jobs are failing on the version check step with the following error
rm -rf .terraform
terraform init -input=false -backend=false -no-color "$module_path"
terraform version -input=false -no-color
Reading required terraform version .tfswitchrc
Switched terraform to version "0.13.5"
Terraform initialized in an empty directory!
The directory has no Terraform configuration files. You may begin working
with Terraform immediately by creating Terraform configuration files.
Usage: terraform version [options]
Displays the version of Terraform and all installed plugins
Options:
-json Output the version information as a JSON object.
Error parsing command-line flags: flag provided but not defined: -input
It looks like terraform version does not like the -input=false with TF 0.13.5 (I didn't try any others). Is there something I'm missing? Or is this actually a bug?