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
101 lines (88 loc) · 3.53 KB
/
azure-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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
name: "azure-05-administer-child-dns-zone"
on:
workflow_call:
inputs:
baseDomain:
description: "Base domain to create new zone under (e.g., tap-workshop.example.com)"
required: true
type: string
domainPrefix:
description: "The prefix to use as the subdomain for the child zone (e.g., participant-1)"
required: true
type: string
resourceGroupName:
description: "The resource group to create the child zone in (e.g., participant-1)"
required: true
type: string
mainResourceGroup:
description: "The resource group that the main DNS zone was created in."
required: true
type: string
action:
required: true
type: string
description: "Create (new) or destroy (existing)"
secrets:
AZURE_AD_CLIENT_ID:
required: true
AZURE_AD_CLIENT_SECRET:
required: true
AZURE_SUBSCRIPTION_ID:
required: true
AZURE_AD_TENANT_ID:
required: true
TF_BACKEND_RESOURCE_GROUP_NAME:
required: true
TF_BACKEND_STORAGE_ACCOUNT_NAME:
required: true
TF_BACKEND_STORAGE_CONTAINER_NAME:
required: true
jobs:
terraform:
env:
ARM_CLIENT_ID: ${{ secrets.AZURE_AD_CLIENT_ID }}
ARM_CLIENT_SECRET: ${{ secrets.AZURE_AD_CLIENT_SECRET }}
ARM_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
ARM_TENANT_ID: ${{ secrets.AZURE_AD_TENANT_ID }}
TF_VAR_base_domain: ${{ inputs.baseDomain }}
TF_VAR_resource_group_name: "${{ inputs.resourceGroupName }}"
TF_VAR_main_resource_group_name: "${{ inputs.mainResourceGroup }}"
TF_VAR_domain_prefix: "${{ inputs.domainPrefix }}"
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/azure/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
with:
terraform_version: 1.5.7
- name: Generate backend configuration
run: |
cp ../backend/backend.tf .
echo "resource_group_name = \"${{ secrets.TF_BACKEND_RESOURCE_GROUP_NAME }}\"" > config.azurerm.tfbackend
echo "storage_account_name = \"${{ secrets.TF_BACKEND_STORAGE_ACCOUNT_NAME }}\"" >> config.azurerm.tfbackend
echo "container_name = \"${{ secrets.TF_BACKEND_STORAGE_CONTAINER_NAME }}\"" >> config.azurerm.tfbackend
echo "key = \"${{ inputs.resourceGroupName }}.dns.${{ inputs.domainPrefix }}.${{ inputs.baseDomain }}.tfstate\"" >> config.azurerm.tfbackend
# 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.azurerm.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