App gw containers, pipeline updates etc [THIS IS WIP] #14
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
# on: | |
# workflow_dispatch: | |
jobs: | |
terraform: | |
name: '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_VERSION: 1.5.7 | |
runs-on: ubuntu-latest | |
environment: production | |
# 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@v4 | |
- name: 'Terraform Format' | |
uses: hashicorp/terraform-github-actions@master | |
with: | |
tf_actions_version: ${{ env.TF_VERSION }} | |
tf_actions_subcommand: 'fmt' | |
tf_actions_working_dir: "./Terraform-AZURE-Services-Creation/AKS" | |
- name: 'Terraform Init' | |
uses: hashicorp/terraform-github-actions@master | |
with: | |
tf_actions_version: ${{ env.TF_VERSION }} | |
tf_actions_subcommand: 'init' | |
tf_actions_working_dir: "./Terraform-AZURE-Services-Creation/AKS" | |
- name: 'Terraform Validate' | |
uses: hashicorp/terraform-github-actions@master | |
with: | |
tf_actions_version: ${{ env.TF_VERSION }} | |
tf_actions_subcommand: 'validate' | |
tf_actions_working_dir: "./Terraform-AZURE-Services-Creation/AKS" | |
- name: 'Terraform Plan' | |
uses: hashicorp/terraform-github-actions@master | |
with: | |
tf_actions_version: ${{ env.TF_VERSION }} | |
tf_actions_subcommand: 'plan' | |
tf_actions_working_dir: "./Terraform-AZURE-Services-Creation/AKS" | |
- name: Terraform Apply | |
# if: github.ref == 'refs/heads/main' | |
uses: hashicorp/terraform-github-actions@master | |
with: | |
tf_actions_version: ${{ env.TF_VERSION }} | |
tf_actions_subcommand: 'apply' | |
tf_actions_working_dir: "./Terraform-AZURE-Services-Creation/AKS" |