-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathterraform-deployment.yml
94 lines (77 loc) · 3.24 KB
/
terraform-deployment.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# Copyright 2022 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: 'Cloud Deployment'
on:
push:
branches:
- main
env:
STATE_BUCKET: ${{ secrets.STATE_BUCKET }}
FOLDER: ${{ secrets.FOLDER }}
WORKLOAD_IDENTITY_PROVIDER: ${{ secrets.WORKLOAD_IDENTITY_PROVIDER }}
SERVICE_ACCOUNT: ${{ secrets.SERVICE_ACCOUNT }}
# OR SET MANUALLY
#
#env:
# STATE_BUCKET: 'XXXX'
# FOLDER: 'folders/XXXX'
# WORKLOAD_IDENTITY_PROVIDER: 'projects/XXXX'
# SERVICE_ACCOUNT: 'XXXX@XXXX'
jobs:
terraform:
name: 'terraform'
runs-on: ubuntu-latest
environment: production
# Add "id-token" with the intended permissions.
permissions:
contents: 'read'
id-token: 'write'
# Use the Bash shell regardless whether the GitHub Actions runner is ubuntu-latest, macos-latest, or windows-latest
defaults:
run:
shell: bash
steps:
# Checkout the repository to the GitHub Actions runner
- name: Checkout
uses: actions/checkout@v3
- id: 'auth'
name: 'Authenticate to Google Cloud'
uses: 'google-github-actions/auth@v0'
with:
token_format: 'access_token'
WORKLOAD_IDENTITY_PROVIDER: ${{ env.WORKLOAD_IDENTITY_PROVIDER }}
SERVICE_ACCOUNT: ${{ env.SERVICE_ACCOUNT }}
access_token_lifetime: '300s' # optional, default: '3600s' (1 hour)
# Install the latest version of Terraform CLI and configure the Terraform CLI configuration file with a Terraform Cloud user API token
- name: Setup Terraform
uses: hashicorp/setup-terraform@v1
with:
cli_config_credentials_token: ${{ steps.auth.outputs.access_token }}
# Initialize a new or existing Terraform working directory by creating initial files, loading any remote state, downloading modules, etc.
- name: Terraform Init
run: |
terraform init \
-backend-config="bucket=$STATE_BUCKET" \
-backend-config="prefix=$GITHUB_REPOSITORY" \
# Checks that all Terraform configuration files adhere to a canonical format
#- name: Terraform Format
# run: terraform fmt -check
# Generates an execution plan for Terraform
- name: Terraform Plan
run: terraform plan -var "folder=$FOLDER"
# On push to main, build or change infrastructure according to Terraform configuration files
# Note: It is recommended to set up a required "strict" status check in your repository for "Terraform Cloud". See the documentation on "strict" required status checks for more information: https://help.github.com/en/github/administering-a-repository/types-of-required-status-checks
- name: Terraform Apply
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
run: terraform apply -var "folder=$FOLDER" -auto-approve