Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/thorstenhans/check-aca-arm-namespace-migration

GitHub Action to check if your Azure Container Apps are migrated to new ARM namespaces
https://github.com/thorstenhans/check-aca-arm-namespace-migration

azure azure-container-apps

Last synced: 7 days ago
JSON representation

GitHub Action to check if your Azure Container Apps are migrated to new ARM namespaces

Awesome Lists containing this project

README

        

# Verify Azure Container Apps ARM namespace migration

This is a simple action that verifies if any of your Azure Container Apps instances have been migrated from the ARM namespace `Microsoft.Web` to `Microsoft.App`.

If at least one Azure Container App is migrated, the action will fail with a non-zero exit code.

## Usage

```yaml
name: 'Check'
on:
workflow_dispatch:
schedule:
- cron: '0 */12 * * *'
jobs:
check:
name: Verify Azure Container Apps namespace migration
runs-on: ubuntu-latest
steps:
- name: Verify
id: verify
uses: ThorstenHans/check-aca-arm-namespace-migration@v1
with:
azure-client-id: ${{ secrets.AZURE_CLIENT_ID}}
azure-client-secret: ${{ secrets.AZURE_CLIENT_SECRET }}
azure-subscription-id: ${{ secrets.AZURE_SUB_ID }}
azure-tenant-id: ${{ secrets.AZURE_TENANT_ID }}
```