> For the complete CircleCI developer hub index, see [llms.txt](https://circleci.com/developer/llms.txt)

# ngs/terraform

Lightweight Terraform Orb, not intended for generic use

## Commands

### tf

| Parameter | Type | Default | Description |
|---|---|---|---|
| `command` | string |  |  |

### init

## Jobs

### validate

### plan

### apply

## Executors

### terraform

## Examples

### main

Validate, plan and apply

```yaml
version: 2.1
orbs:
  tf: ngs/terraform@0.0.1
workflows:
  tf:
    jobs:
      - tf/validate:
          name: validate
      - tf/plan:
          name: plan
          requires:
            - validate
      - tf/apply:
          name: apply
          requires:
            - plan
          filters:
            branches:
              only: master
```