Skip to main content
Version: v1.24.2

Google Cloud Storage

The Google Cloud Storage Retriever will use the google-cloud-storage package and google-api-options package to access your flag in Google Cloud Storage.

Example

err := ffclient.Init(ffclient.Config{
PollingInterval: 3 * time.Second,
Retriever: &gcstorageretriever.Retriever{
Options: []option.ClientOption{option.WithoutAuthentication()},
Bucket: "2093u4pkasjc3",
Object: "flags.yaml",
}
})
defer ffclient.Close()

Configuration fields

To configure your Google Cloud Storage file location:

FieldDescription
BucketThe name of your bucket.
ObjectThe name of your object in your bucket.
OptionAn instance of option.ClientOption that configures your access to Google Cloud.
Check this documentation for more info.

Get the latest GO Feature Flag updates