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
|
|
|
|
secrets:
|
|
|
|
- linode_token
|
2022-06-09 03:25:55 +00:00
|
|
|
- aws_access_key_id
|
|
|
|
- aws_secret_access_key
|
2022-06-09 02:29:59 +00:00
|
|
|
commands:
|
|
|
|
- apk add --no-cache terraform
|
|
|
|
- terraform version
|
2022-06-09 02:45:38 +00:00
|
|
|
- cd dns
|
|
|
|
- terraform init
|
|
|
|
- terraform validate
|
|
|
|
- terraform plan -var "token=$LINODE_TOKEN"
|
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
|
|
|
|
secrets:
|
|
|
|
- linode_token
|
2022-06-09 03:25:55 +00:00
|
|
|
- aws_access_key_id
|
|
|
|
- aws_secret_access_key
|
2022-06-09 02:29:59 +00:00
|
|
|
commands:
|
|
|
|
- apk add --no-cache terraform
|
|
|
|
- terraform version
|
2022-06-09 02:45:38 +00:00
|
|
|
- cd dns
|
|
|
|
- terraform init
|
|
|
|
- terraform validate
|
|
|
|
- terraform plan -out deploy.plan -var "token=$LINODE_TOKEN"
|
|
|
|
- terraform apply deploy.plan -var "token=$LINODE_TOKEN"
|