blog.ligthert.net/Taskfile.yaml

33 lines
362 B
YAML
Raw Permalink Normal View History

version: '3'
tasks:
init:
cmds:
- terraform init
validate:
cmds:
- terraform validate
plan:
cmds:
- terraform plan
apply:
cmds:
- terraform apply
fmt:
cmds:
- terraform fmt
lint:
cmds:
- tflint
precommit:
cmds:
- pre-commit autoupdate
- pre-commit run --all-files