| 1234567891011121314151617181920212223242526272829303132 |
- 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
|