Terraform orb appears to not be loading?

Hi there. My config.yml has the following line in it:

version: 2.1
orbs:
terraform: circleci/terraform@3.2.0

But when my job runs it is giving me this output:
Using Terraform version ‘1.0.0’
2023-02-02 22:48:01 URL:https://releases.hashicorp.com/terraform/1.0.0/terraform_1.0.0_linux_amd64.zip [33043000/33043000] → “terraform_1.0.0_linux_amd64.zip” [1]
2023-02-02 22:48:01 URL:https://releases.hashicorp.com/terraform/1.0.0/terraform_1.0.0_SHA256SUMS [1279/1279] → “terraform_1.0.0_SHA256SUMS” [1]

Is there anything else I should be doing here?

Those messages will come from steps within the ORB to download and install terraform, so they are not an issue.

For someone to comment they will need to see your circleci.yml file as this is basically telling terraform how to operate, with the limitation that all the real work is being handled by terraform and the config files that you pass it.

1 Like