Closed
Description
File: quota_check.md
The repo README.md instructs us to check quota with this script.
Problem 1: Script location
- The quota_check.md asks us to run
./quota_check_params.sh
. - It should ask us to run
./scripts/quota_check_params.sh
since we are in root of repo.
Enhancement 2: Azure login
- Neither repo nor quota_check.md specify that you should be logged into Azure before running the script.
- This means your first run will always result in an error (especially if using Codespaces). Here is the sample input from my run
./scripts/quota_check_params.sh
🔄 Fetching available Azure subscriptions...
WARNING: Please run "az login" to access your accounts.
❌ ERROR: No active Azure subscriptions found. Please log in using 'az login' and ensure you have an active subscription.
Suggestion:
- Add a step before asking user to login using
az login
- Make a note that if this is run in Codespaces, it will automatically use the device code auth flow.