Google Cloud Setup
This page covers creating a Google Cloud project, service account, and downloading your API credentials.
1. Create a Google Cloud Project
- Go to Google Cloud Console
- Click New Project
- Name your project (e.g.,
my-gcp-course-project) - Click Create
2. Create a Service Account
- Navigate to IAM & Admin > Service Accounts
- Click + Create Service Account
- Configure the account:
- Name/ID:
vertex-ai-sa
- Name/ID:
- Grant role: Vertex AI Administrator
- Click Done
3. Download Service Account Key
- In your service account's row, click Manage Keys
- Click Add Key > Create new key
- Select JSON format
- Click Create
- Download and save the JSON file alongside your notebook
Keep Your Key Secure
Never commit your service account key to version control. Add it to your .gitignore file.
Next Step
Continue to Connect to Vertex AI to initialize the SDK and authenticate with your credentials.