Stay organized with collections Save and categorize content based on your preferences.
In general, the google-cloud-spanner library uses Service Account credentials to connect to Google Cloud services. When running within Google Cloud Platform environments the credentials will be discovered automatically. When running on other environments, the Service Account credentials can be specified by providing the path to the JSON keyfile for the account (or the JSON itself) in environment variables. Additionally, Cloud SDK credentials can also be discovered automatically, but this is only recommended during development.
Quickstartexport SPANNER_CREDENTIALS=/path/to/json`
require "google/cloud/spanner" client = Google::Cloud::Spanner.newProject and Credential Lookup
The google-cloud-spanner library aims to make authentication as simple as possible and provides several mechanisms to configure your system without providing Project ID and Service Account Credentials directly in code.
Project ID is discovered in the following order:
Credentials are discovered in the following order:
When running on Google Cloud Platform (GCP), including Google Compute Engine (GCE), Google Kubernetes Engine (GKE), Google App Engine (GAE), Google Cloud Functions (GCF) and Cloud Run, the Project ID and Credentials and are discovered automatically. Code should be written as if already authenticated.
Environment VariablesThe Project ID and Credentials JSON can be placed in environment variables instead of declaring them directly in code. Each service has its own environment variable, allowing for different service accounts to be used for different services. (See the READMEs for the individual service gems for details.) The path to the Credentials JSON file can be stored in the environment variable, or the Credentials JSON itself can be stored for environments such as Docker containers where writing files is difficult or not encouraged.
The environment variables that google-cloud-spanner checks for project ID are:
SPANNER_PROJECT
GOOGLE_CLOUD_PROJECT
The environment variables that google-cloud-spanner checks for credentials are configured on Google::Cloud::Spanner::V1::Spanner::Credentials
:
SPANNER_CREDENTIALS
- Path to JSON file, or JSON contentsSPANNER_KEYFILE
- Path to JSON file, or JSON contentsGOOGLE_CLOUD_CREDENTIALS
- Path to JSON file, or JSON contentsGOOGLE_CLOUD_KEYFILE
- Path to JSON file, or JSON contentsGOOGLE_APPLICATION_CREDENTIALS
- Path to JSON filerequire "google/cloud/spanner" ENV["SPANNER_PROJECT"] = "my-project-id" ENV["SPANNER_CREDENTIALS"] = "path/to/keyfile.json" client = Google::Cloud::Spanner.newConfiguration
The Project ID and the path to the Credentials JSON file can be configured instead of placing them in environment variables or providing them as arguments.
require "google/cloud/spanner" Google::Cloud::Spanner.configure do |config| config.project_id = "my-project-id" config.credentials = "path/to/keyfile.json" end client = Google::Cloud::Spanner.newCloud SDK
This option allows for an easy way to authenticate during development. If credentials are not provided in code or in environment variables, then Cloud SDK credentials are discovered.
To configure your system for this, simply:
$ gcloud auth login
NOTE: This is not recommended for running in production. The Cloud SDK should only be used during development.
Creating a Service AccountGoogle Cloud requires a Project ID and Service Account Credentials to connect to the APIs. You will use the Project ID and JSON key file to connect to most services with google-cloud-spanner.
If you are not running this client within Google Cloud Platform environments, you need a Google Developers service account.
Activate the slide-out navigation tray and select API Manager. From here, you will enable the APIs that your application requires.
Note: You may need to enable billing in order to use these services.
Select Credentials from the side navigation.
You should see a screen like one of the following.
Find the "Add credentials" drop down and select "Service account" to be guided through downloading a new JSON key file.
If you want to re-use an existing service account, you can easily generate a new key file. Just select the account you wish to re-use, and click "Generate new JSON key":
The key file you download will be used by this library to authenticate API requests and should be stored in a secure location.
If you're having trouble authenticating you can ask for help by following the Troubleshooting Guide.
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-08-07 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-07 UTC."],[],[]]
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4