#!/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."