adding config + pipeline #97
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rule Sets Pipeline | |
on: | |
pull_request: | |
branches: | |
- rule-sets-DTSPO-17918 | |
push: | |
branches: | |
- rule-sets-DTSPO-17918 | |
permissions: | |
id-token: write | |
contents: read | |
jobs: | |
plan-and-apply: | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Log in to Azure | |
uses: azure/login@v1 | |
with: | |
creds: ${{ secrets.AZURE_CREDENTIALS }} | |
- name: Setup Terraform | |
uses: hashicorp/setup-terraform@v1 | |
- name: Install jq and gh | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y jq | |
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-key C99B11DEB97541F0 | |
sudo apt-add-repository https://cli.github.com/packages | |
sudo apt-get update | |
sudo apt-get install -y gh | |
- name: Run branch protection script | |
run: ./check_branch_protection.sh | |
env: | |
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }} | |
- name: Change directory to Terraform config | |
run: cd components | |
- name: Initialize Terraform | |
working-directory: components | |
env: | |
ARM_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} | |
ARM_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }} | |
ARM_SUBSCRIPTION_ID: ${{ secrets.DCD_CFT_SANDBOX_SUBSCRIPTION }} | |
ARM_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} | |
run: | | |
terraform init \ | |
-backend-config="resource_group_name=rule-set-rg" \ | |
-backend-config="storage_account_name=rulesetsa" \ | |
-backend-config="container_name=tfstate" \ | |
-backend-config="key=terraform.tfstate" | |
- name: Plan and Apply Terraform | |
working-directory: components | |
env: | |
ARM_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} | |
ARM_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }} | |
ARM_SUBSCRIPTION_ID: ${{ secrets.DCD_CFT_SANDBOX_SUBSCRIPTION }} | |
ARM_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} | |
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }} | |
run: | | |
terraform plan -out=tfplan \ | |
-var="location=UK South" \ | |
-var="override_action=plan" \ | |
-var="github_token=${{ secrets.PAT_TOKEN }}" | |
terraform apply -auto-approve tfplan |