-
Notifications
You must be signed in to change notification settings - Fork 0
59 lines (49 loc) · 1.47 KB
/
deploy.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: Terraform CI/CD
on:
push:
branches:
- main
pull_request:
types: [opened, reopened, synchronize]
jobs:
terraform-format-validate:
name: Terraform Format and Validate
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Terraform
uses: hashicorp/setup-terraform@v1
with:
terraform_version: 1.0.0
- name: Terraform Format
run: terraform fmt -check
- name: Terraform Init and Validate
run: |
terraform init
terraform validate
terraform-apply:
name: Terraform Apply
needs: terraform-format-validate
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Google Auth
uses: google-github-actions/auth@v1
with:
credentials_json: "${{ secrets.GCE_SA_KEY }}"
- name: Setup Terraform
uses: hashicorp/setup-terraform@v1
with:
terraform_version: 1.0.0
- name: Terraform Init and Apply
env:
GOOGLE_CREDENTIALS: ${{ secrets.GCE_SA_KEY }}
run: |
terraform init
terraform apply -auto-approve \
-var="project_id=${{ secrets.GCP_PROJECT_ID }}" \
-var="repo_name=${{ secrets.REPO_NAME }}" \
-var="repo_owner=${{ secrets.REPO_OWNER }}" \
-var="gh_token=${{ secrets.GH_TOKEN }}"