Hi there!
I’m trying to use a community orb and am encountering a good bit of resistance and I cannot find forum posts or documentation on how to resolve. I’m getting a Cannot find a definition for command error from the following config. I have updated the security setting to allow 3rd party orbs, so that’s not it. I’m not sure why the command isn’t able to be called when I’ve included the orb 
version: 2.1
orbs:
  # source: https://circleci.com/orbs/registry/orb/devops-workflow/terraform
  terraform: devops-workflow/terraform@0.0.1
jobs:
  test:
    parallelism: 1
    shell: /bin/sh
    environment:
      DEBIAN_FRONTEND: noninteractive
    docker:
    - image: hashicorp/terraform:0.11.10
      entrypoint: ""
    steps:
      - checkout
      - terraform_fmt
      - terraform_validate
      - run:
          command: terraform init -input=false
workflows:
  test:
    jobs:
      - test