16 lines
No EOL
564 B
Bash
Executable file
16 lines
No EOL
564 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
. .env
|
|
|
|
if [ -z "$PROJECT_NAME" ]; then
|
|
echo "❌ PROJECT_NAME is not set. Please add PROJECT_NAME=<your_project_name> to your .env file before running this script."
|
|
exit 1
|
|
fi
|
|
|
|
gcloud compute instances list --project="$PROJECT_NAME" && gcloud compute disks list --project="$PROJECT_NAME" && gcloud compute firewall-rules list --project="$PROJECT_NAME" && gcloud storage buckets list --project="$PROJECT_NAME"
|
|
|
|
if [ $? -ne 0 ]; then
|
|
echo "❌ gcloud is not authenticated, please run 'gcloud auth login' first"
|
|
echo
|
|
exit 1
|
|
fi |