Updating MDFC initiative to use the latest MDFC for Storage policy #1056
Workflow file for this run
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: Test Portal Experience | |
########################################## | |
# Start the job on push for all branches # | |
########################################## | |
# yamllint disable-line rule:truthy | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- ready_for_review | |
paths: | |
- "eslzArm/**.json" | |
- "src/Alz.Tools/**" | |
- "src/**.json" | |
- "src/**.bicep" | |
workflow_dispatch: {} | |
env: | |
GITHUB_COMMIT_ID: ${{ github.event.pull_request.head.sha }} | |
GITHUB_PR_ID: ${{ github.event.pull_request.id }} | |
TEMP_SUBSCRIPTIONS_JSON_PATH: "./src/data/subscriptions.json" | |
TEMP_DEPLOYMENT_OBJECT_PATH: "./src/data/eslzArm.test.deployment.json" | |
permissions: | |
contents: read | |
id-token: write | |
concurrency: | |
group: test-${{ github.event.pull_request.head.repo.full_name }}/${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
############### | |
# Set the Job # | |
############### | |
jobs: | |
test-portal: | |
name: Test Portal Experience | |
runs-on: ubuntu-latest | |
environment: csu-rw | |
if: | | |
( | |
github.event.pull_request.head.repo.full_name == 'Azure/Enterprise-Scale' | |
) | |
|| | |
( | |
github.event.pull_request.head.repo.full_name != 'Azure/Enterprise-Scale' | |
&& | |
contains(github.event.pull_request.labels.*.name, 'PR: Safe to test :test_tube:') | |
) | |
|| | |
( | |
github.event_name == 'workflow_dispatch' | |
) | |
|| | |
( | |
github.event_name == 'merge_group' | |
) | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
persist-credentials: false | |
- name: Show env | |
run: env | sort | |
- name: List available pwsh modules | |
uses: azure/powershell@v1 | |
with: | |
inlineScript: Get-Module -ListAvailable | |
azPSVersion: "latest" | |
- name: Azure login (OIDC) | |
uses: azure/login@v1 | |
if: ${{ success() && env.AZURE_CLIENT_SECRET == '' }} | |
with: | |
client-id: ${{ secrets.AZURE_CLIENT_ID }} | |
tenant-id: ${{ secrets.AZURE_TENANT_ID }} | |
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }} | |
enable-AzPSSession: true | |
env: | |
AZURE_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }} | |
- name: Azure login (Client Secret) | |
uses: azure/login@v1 | |
if: ${{ success() && env.AZURE_CLIENT_SECRET != '' }} | |
with: | |
creds: '{"clientId":"${{ secrets.AZURE_CLIENT_ID }}","clientSecret":"${{ secrets.AZURE_CLIENT_SECRET }}","subscriptionId":"${{ secrets.AZURE_SUBSCRIPTION_ID }}","tenantId":"${{ secrets.AZURE_TENANT_ID }}"}' | |
enable-AzPSSession: true | |
env: | |
AZURE_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }} | |
- name: Register subscriptions | |
uses: azure/powershell@v1 | |
with: | |
inlineScript: | | |
./src/scripts/Invoke-ActionRegisterSubscriptions.ps1 | |
Get-Content -Path $env:TEMP_SUBSCRIPTIONS_JSON_PATH | jq | |
azPSVersion: "latest" | |
env: | |
BILLING_SCOPE: ${{ secrets.BILLING_SCOPE }} | |
- name: Pre-process subscriptions | |
uses: azure/powershell@v1 | |
with: | |
inlineScript: ./src/scripts/Invoke-ActionRemoveOrphanedRBAC.ps1 | |
azPSVersion: "latest" | |
- name: Generate eslzArm configuration | |
id: config | |
uses: azure/powershell@v1 | |
with: | |
inlineScript: | | |
./src/scripts/Invoke-ActionGenerateEslzArmConfig.ps1 | |
Get-Content -Path $env:TEMP_DEPLOYMENT_OBJECT_PATH | jq | |
azPSVersion: "latest" | |
env: | |
DEPLOYMENT_LOCATION: ${{ secrets.DEPLOYMENT_LOCATION }} | |
- name: Run eslzArm deployment (TEST) | |
uses: azure/powershell@v1 | |
with: | |
inlineScript: ./src/scripts/Invoke-ActionRunEslzArmDeployment.ps1 -Test | |
azPSVersion: "latest" | |
- name: Run eslzArm deployment (WHAT IF) | |
uses: azure/powershell@v1 | |
with: | |
inlineScript: ./src/scripts/Invoke-ActionRunEslzArmDeployment.ps1 -WhatIf | |
azPSVersion: "latest" | |
- name: Run eslzArm deployment (DEPLOY) | |
uses: azure/powershell@v1 | |
with: | |
inlineScript: ./src/scripts/Invoke-ActionRunEslzArmDeployment.ps1 | |
azPSVersion: "latest" | |
- name: Install PowerShell modules | |
shell: pwsh | |
run: | | |
Install-Module -Name "Az" -RequiredVersion "10.1.0" -Force -Scope CurrentUser -ErrorAction Stop | |
Update-AzConfig -DisplayBreakingChangeWarning $false | |
- name: Pester Test for Policies | |
shell: pwsh | |
run: | | |
Import-Module Pester -Force | |
$pesterConfiguration = @{ | |
Run = @{ | |
Path = "tests/*.tests.ps1" | |
PassThru = $true | |
} | |
Output = @{ | |
Verbosity = 'Detailed' | |
CIFormat = 'Auto' | |
} | |
} | |
$result = Invoke-Pester -Configuration $pesterConfiguration | |
exit $result.FailedCount | |
env: | |
SUBSCRIPTION_ID: ${{ secrets.AZURE_POLICY_SUBSCRIPTION1_ID }} | |
SUBSCRIPTION2_ID: ${{ secrets.AZURE_POLICY_SUBSCRIPTION2_ID }} #Used for policy tests that require a second subscription (e.g. cross subscription peering) | |
TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} | |
- name: Run eslzArm deployment (DESTROY) | |
uses: azure/powershell@v1 | |
with: | |
inlineScript: ./src/scripts/Invoke-ActionRunEslzArmDeployment.ps1 -Destroy | |
azPSVersion: "9.4.0" |