33 lines
362 B
YAML
33 lines
362 B
YAML
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
|