Skip to content

Add Persona Model

Add Persona Model #33

Workflow file for this run

name: Data Landing Zone Deployment
on:
push:
branches:
- main
paths:
- "**.tf"
- "**.yml"
- "**.yaml"
- "!.github/workflows/**"
- "!.pre-commit-config.yaml"
- "!.terraform-docs.yml"
pull_request:
branches:
- main
paths:
- "**.tf"
- "**.yml"
- "**.yaml"
- "!.github/workflows/**"
- "!.pre-commit-config.yaml"
- "!.terraform-docs.yml"
jobs:
terraform:
uses: ./.github/workflows/_terraformEnvironmentTemplate.yml
name: "Terraform"
with:
environment: "dev"
terraform_version: "1.10.3"
node_version: 20
working_directory: "./tests/e2e"
tenant_id: "37963dd4-f4e6-40f8-a7d6-24b97919e452"
subscription_id: "9842be63-c8c0-4647-a5d1-0c5e7f8bbb25"
secrets:
CLIENT_ID: ${{ secrets.CLIENT_ID }}
terraform_destroy:
uses: ./.github/workflows/_terraformDestroyTemplate.yml
name: "Terraform Destroy"
needs: [terraform]
if: github.event_name == 'push' || github.event_name == 'release'
with:
environment: "dev"
terraform_version: "1.10.3"
node_version: 20
working_directory: "./tests/e2e"
tenant_id: "37963dd4-f4e6-40f8-a7d6-24b97919e452"
subscription_id: "9842be63-c8c0-4647-a5d1-0c5e7f8bbb25"
secrets:
CLIENT_ID: ${{ secrets.CLIENT_ID }}