cloudflare/.drone.yml
Kazuhiro MUSASHI 125634c139
All checks were successful
continuous-integration/drone/push Build is passing
Auto-approve terraform apply.
2025-03-12 22:01:48 +09:00

32 lines
429 B
YAML

kind: pipeline
type: docker
name: plan
steps:
- name: plan
image: reg.kazu634.com/kazu634/terraform
commands:
- terraform init
- terraform plan
trigger:
branch:
exclude:
- main
---
kind: pipeline
type: docker
name: apply
steps:
- name: apply
image: reg.kazu634.com/kazu634/terraform
commands:
- terraform init
- terraform apply -auto-approve
trigger:
branch:
- main