ovotech / circleci-orbs

CircleCI Orbs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

optionally specify fmt-check step name

mishabruml opened this issue · comments

name: "terraform fmt"

I'm using fmt-check like this

jobs:
  terraform_fmt:
    executor: terraform/default
    steps:
      - checkout
      - terraform/fmt-check:
          path: terraform/environments/non-production
          name: fmt non-production
      - terraform/fmt-check:
          path: terraform/environments/production
          name: fmt production

Which results in circleci looking like this
image

If the name property could be specified, then the step names would be more meaningful. Perhaps they could default to a concat with the tf path? e.g. name: "terraform fmt ${*path}"