41 lines
471 B
YAML
41 lines
471 B
YAML
|
version: '3'
|
||
|
|
||
|
tasks:
|
||
|
|
||
|
init:
|
||
|
cmds:
|
||
|
- terraform init
|
||
|
|
||
|
validate:
|
||
|
cmds:
|
||
|
- terraform validate
|
||
|
|
||
|
plan:
|
||
|
cmds:
|
||
|
- terraform plan
|
||
|
|
||
|
apply:
|
||
|
cmds:
|
||
|
- terraform apply
|
||
|
|
||
|
destroy:
|
||
|
cmds:
|
||
|
- terraform destroy
|
||
|
|
||
|
fmt:
|
||
|
cmds:
|
||
|
- terraform fmt
|
||
|
|
||
|
lint:
|
||
|
cmds:
|
||
|
- tflint
|
||
|
|
||
|
precommit:
|
||
|
cmds:
|
||
|
- pre-commit autoupdate
|
||
|
- pre-commit run --all-files
|
||
|
|
||
|
cleanup:
|
||
|
cmds:
|
||
|
- rm -rf .terraform* terraform.*
|