Sync Monitor Policies #82
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: Sync Monitor Policies | |
env: | |
REVIEWER: anwather | |
on: | |
schedule: | |
- cron: '0 12 * * 3' | |
workflow_dispatch: | |
jobs: | |
sync: | |
name: Extract Policies | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- shell: pwsh | |
name: Install Required Modules | |
run: | | |
Install-Module EnterprisePolicyAsCode -Verbose -Force | |
Install-Module Az.ResourceGraph -Verbose -Force | |
Install-Module Az.ManagedServiceIdentity -Verbose -Force | |
- name: Azure Login | |
uses: Azure/login@v2 | |
with: | |
creds: '{"clientId":"${{ secrets.CLIENT_ID }}","clientSecret":"${{ secrets.CLIENT_SECRET }}","subscriptionId":"${{ secrets.SUBSCRIPTION_ID }}","tenantId":"${{ secrets.TENANT_ID }}"}' | |
enable-AzPSSession: true | |
- name: Extract Policies | |
uses: azure/powershell@v1 | |
with: | |
inlineScript: | | |
./export-policies.ps1 -TenantId ${{ secrets.TENANT_ID }} -Location australiaeast | |
azPSVersion: "latest" | |
- shell: pwsh | |
name: Create PR | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
$branchName = "automated-pr-$(Get-Date -Format yyyy-MM-dd-HH-mm)" | |
git config user.name "GitHub Actions Bot" | |
git config user.email "<>" | |
git checkout -b $branchName | |
git reset ./assets/mg-structure.json | |
git add . | |
git commit -m "Extracted policy commit" | |
git push --set-upstream origin $branchName | |
gh pr create -B main -H $branchName --title "Approval Required for Policy Extraction - $branchName" --body "Policy extraction review" --reviewer $env:REVIEWER |