Files
homelab-terraform/.drone.yml
Tim Unkrig bfbf7c3a26
Some checks failed
continuous-integration/drone Build is failing
added plan step
2023-10-27 11:17:59 +02:00

25 lines
443 B
YAML

---
kind: pipeline
name: default
type: docker
trigger:
branch:
- main
steps:
- name: Terraform syntax check
image: hashicorp/terraform:1.5
commands:
- terraform -chdir=infrastructure fmt -diff -check
# when:
# event:
# - pull_request
- name: terraform plan
image: hashicorp/terraform:1.5
commands:
- terraform init
- terraform plan
# when:
# event:
# - pull_request