If you've never touched cloud before, this is where you start.
We're going to create a storage bucket on GCP using the browser console — no CLI, no code, no credit card (GCP has a $300 free trial).
Step 1 — Create a free GCP account
Go to cloud.google.com → click "Start free" → sign in with Google → activate the $300 free trial.
Step 2 — Open Cloud Shell
In the top right of the GCP console, click the terminal icon >_ to open a browser-based Linux terminal. No setup needed.
Step 3 — Create a storage bucket
Run this in Cloud Shell:
gsutil mb -l europe-west1 gs://my-first-bucket-$(date +%s)
Step 4 — Upload a file
echo "Hello from GCP!" > hello.txt
gsutil cp hello.txt gs://my-first-bucket-[your bucket name]/
Step 5 — Verify it's there
gsutil ls gs://my-first-bucket-[your bucket name]/
You just used the Google Cloud CLI to create cloud storage and upload a file.
Now do this: Ask ChatGPT — "What else can I do with Google Cloud Storage? Give me 5 practical examples for a sysadmin."
Post your output in the comments. That's your first AI-assisted cloud task done.