zkt26/sk1/remove-app.sh
2026-05-12 18:41:50 +02:00

14 lines
377 B
Bash
Executable File

#!/bin/bash
set -e
RG_NAME="smartbuilding-rg"
echo "=== SmartBuilding — Remove All Azure Resources ==="
echo "This permanently deletes the resource group '$RG_NAME'"
echo "(includes container registry, container instances, storage, and all data)."
az group delete --name $RG_NAME --yes --no-wait
echo "Deletion initiated. Resources are being removed in the background."