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
94 lines (79 loc) · 2.9 KB
/
google-main-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
87
88
89
90
91
92
93
94
name: "google-administer-main-dns-zone"
on:
workflow_call:
inputs:
domain:
description: "New DNS zone name to create (e.g., example.com)"
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
outputs:
zone_name:
description: "The Google Cloud DNS Zone name hosting the base domain"
value: ${{ jobs.terraform.outputs.zone_name }}
jobs:
terraform:
env:
GOOGLE_APPLICATION_CREDENTIALS: "/tmp/gcloud/sa.json"
TF_VAR_project: ${{ secrets.GOOGLE_PROJECT_ID }}
TF_VAR_root_domain: ${{ inputs.domain }}
runs-on: ubuntu-22.04
outputs:
zone_name: ${{ steps.set_outputs.outputs.zone_name }}
# 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/main-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.domain }}\"" >> 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
- name: Set Outputs
id: set_outputs
run: |
zone_name=$(terraform output --raw zone_name)
echo "zone_name=${zone_name}" >> $GITHUB_OUTPUT