This repository has been archived by the owner on Oct 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
87 lines (73 loc) · 2.78 KB
/
google-child-dns.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
name: "google-administer-child-dns-zone"
on:
workflow_call:
inputs:
root-domain-zone-name:
description: "Name of zone hosting the root domain under management by Cloud DNS"
required: true
type: string
subdomain:
description: "The prefix to use as the subdomain for the child zone"
required: true
type: string
action:
required: true
type: string
description: "Create (new) or destroy (existing)"
secrets:
GOOGLE_PROJECT_ID:
required: true
GOOGLE_SERVICE_ACCOUNT_KEY:
required: true
TF_BACKEND_GCS_BUCKET_NAME:
required: true
GOOGLE_KMS_KEYRING:
required: true
jobs:
terraform:
env:
GOOGLE_APPLICATION_CREDENTIALS: "/tmp/gcloud/sa.json"
TF_VAR_project: ${{ secrets.GOOGLE_PROJECT_ID }}
TF_VAR_root_domain_zone_name: ${{ inputs.root-domain-zone-name }}
TF_VAR_subdomain: "${{ inputs.subdomain }}"
runs-on: ubuntu-22.04
# Use the Bash shell regardless whether the GitHub Actions runner is ubuntu-22.04, macos-latest, or windows-latest
defaults:
run:
shell: bash
working-directory: terraform/google/child-dns
steps:
# Checkout the repository to the GitHub Actions runner
- name: Checkout
uses: actions/checkout@v4
# Install the latest version of Terraform CLI
- name: Setup Terraform
uses: hashicorp/setup-terraform@v2
- name: Generate backend configuration
run: |
cp ../backend/backend.tf .
echo "bucket = \"${{ secrets.TF_BACKEND_GCS_BUCKET_NAME }}\"" > config.gcs.tfbackend
echo "prefix = \"dns-${{ inputs.subdomain }}-${{ inputs.root-domain-zone-name }}\"" >> config.gcs.tfbackend
- name: Decrypt service account keyfile contents and write to /tmp/gcloud/sa.json
env:
GOOGLE_SERVICE_ACCOUNT_KEY: ${{ secrets.GOOGLE_SERVICE_ACCOUNT_KEY }}
run: |
mkdir -p /tmp/gcloud
echo "$GOOGLE_SERVICE_ACCOUNT_KEY" | base64 -d > /tmp/gcloud/sa.json
chmod 600 /tmp/gcloud/sa.json
# 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 -upgrade -backend-config=./config.gcs.tfbackend
# 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
if: inputs.action == 'create'
run: terraform plan
- name: Terraform Apply
if: inputs.action == 'create'
run: terraform apply -auto-approve
- name: Terraform Destroy
if: inputs.action == 'destroy'
run: terraform destroy -auto-approve