Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/thorstenhans/check-aca-arm-namespace-migration
- Owner: ThorstenHans
- Created: 2022-02-11T12:25:18.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-02-11T12:56:07.000Z (almost 3 years ago)
- Last Synced: 2024-10-31T10:44:05.554Z (13 days ago)
- Topics: azure, azure-container-apps
- Language: Go
- Homepage:
- Size: 7.81 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 }}
```