terraform/.woodpecker/dns.yml

31 lines
889 B
YAML
Raw Normal View History

2022-06-09 02:29:59 +00:00
pipeline:
validate:
2022-06-09 02:45:38 +00:00
image: alpine:3.16
2022-06-09 02:29:59 +00:00
when:
path: "dns/**"
event: pull_request
commands:
- apk add --no-cache terraform
- terraform version
2022-06-09 02:45:38 +00:00
- cd dns
- terraform init
- terraform validate
2022-07-17 20:06:52 +00:00
- terraform plan -var "token=$LINODE_TOKEN" -var "secret=$GLAUCA_TSIG_SECRET"
secrets: [linode_token, aws_access_key_id, aws_secret_access_key, glauca_tsig_secret]
2022-06-09 02:29:59 +00:00
deploy:
2022-06-09 02:45:38 +00:00
image: alpine:3.16
2022-06-09 02:29:59 +00:00
when:
path: "dns/**"
2022-06-09 02:45:38 +00:00
branch: main
2022-06-09 02:29:59 +00:00
event: push
commands:
- apk add --no-cache terraform
- terraform version
2022-06-09 02:45:38 +00:00
- cd dns
- terraform init
- terraform validate
2022-07-17 20:06:52 +00:00
- terraform plan -out deploy.plan -var "token=$LINODE_TOKEN" -var "secret=$GLAUCA_TSIG_SECRET"
2022-06-09 04:19:15 +00:00
- terraform apply deploy.plan
2022-07-17 20:06:52 +00:00
secrets: [linode_token, aws_access_key_id, aws_secret_access_key, glauca_tsig_secret]