You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
The text was updated successfully, but these errors were encountered:
I tried to replicate with 0.13.0 and the command failed but works fine up through 0.12.29. Does -input=false even make sense for getting the version? I can't find anything in the doc aside from
This is used when you want to disable prompts for variables that haven't had their values specified.
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?The text was updated successfully, but these errors were encountered: