Ubuntu – Terraform Cloud not recognizing TF_VAR environment variable in Github Actions
In my Github actions pipeline I use the Terraform Cloud workflows like this: terraform: name: "Terraform Plan" runs-on: ubuntu-latest needs: build permissions: contents: read pull-requests: write env: TF_CLOUD_ORGANIZATION: "xxx" TF_API_TOKEN: "${{ secrets.TF_API_TOKEN }}" TF_WORKSPACE: "xxx" CONFIG_DIRECTORY: "./infrastructure" steps: - name:…