Azure IPAM Deployment & Testing #13
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: Azure IPAM Testing | |
permissions: | |
id-token: write | |
contents: read | |
run-name: Azure IPAM Deployment & Testing | |
on: | |
push: | |
branches: [ github-actions ] | |
pull_request: | |
branches: [ main ] | |
env: | |
IPAM_UI_ID: ipam-ui-${{ github.run_id }}-${{ github.run_attempt }} | |
IPAM_ENGINE_ID: ipam-engine-${{ github.run_id }}-${{ github.run_attempt }} | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "Job triggered by a ${{ github.event_name }} event from ${{ github.head_ref }} to main." | |
- name: Install Deployment Prerequisites | |
uses: azure/powershell@v1 | |
with: | |
inlineScript: | | |
Set-PSRepository PSGallery -InstallationPolicy Trusted | |
Install-Module Az, Microsoft.Graph -Force | |
azPSVersion: "latest" | |
- name: "Azure Login" | |
uses: azure/login@v1 | |
with: | |
client-id: ${{ secrets.AZURE_CLIENT_ID }} | |
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }} | |
tenant-id: ${{ secrets.AZURE_TENANT_ID }} | |
enable-AzPSSession: true | |
- name: Checkout Azure IPAM Code | |
uses: actions/checkout@v3 | |
- name: Deploy Azure IPAM | |
uses: azure/powershell@v1 | |
id: "pwshScript" | |
with: | |
inlineScript: ./deploy/deploy.ps1 -Location "westus3" -UIAppName $Env:IPAM_UI_ID -EngineAppName $Env:IPAM_ENGINE_ID | |
azPSVersion: "latest" | |
- name: "Output PowerShell Value 'ipamSuffix'" | |
run: echo "${{ steps.pwshScript.outputs.ipamSuffix }}" | |
- name: "Test Sleepy Time" | |
run: | | |
echo "Time: $(date +'%T')" | |
echo "Sleeping for 30 seconds" | |
sleep 30 | |
echo "Time: $(date +'%T')" | |
- name: "Upload Logs" | |
uses: azure/powershell@v1 | |
with: | |
inlineScript: | | |
$dateStamp = (Get-Date -UFormat "%Y-%m-%d_%I-%M-%S_%p").tostring() | |
$archiveName = "ipam-${dateStamp}.zip" | |
Compress-Archive -Path ./logs/* -DestinationPath /tmp/$archiveName | |
$storage = Get-AzStorageAccount -Name "ipamghactionlogs" -ResourceGroupName "Logging-RG" | |
$context = $storage.Context | |
$uploadDetails = @{ | |
File = "/tmp/$archiveName" | |
Container = "deploy-logs" | |
Blob = $archiveName | |
Context = $context | |
StandardBlobTier = "Hot" | |
} | |
Set-AzStorageBlobContent @uploadDetails | |
azPSVersion: "latest" | |
- run: echo "${{ github.job }} status is ${{ job.status }}." |