> ## Documentation Index
> Fetch the complete documentation index at: https://docs.superblocks.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Google Cloud Storage

> Build apps with read and write access to a Google Cloud Storage instance

export const IntegrationSuccess = ({integrationName}) => {
  return <p>
      <b>{integrationName} connected!</b><br />You can now use{" "}
      <a href="/building-with-clark">Clark to build</a> with {integrationName}.
    </p>;
};

export const Alert = ({type, title, children}) => {
  const variant = ["info", "success", "warning", "danger", "note"].includes(type) ? type : "note";
  return <div className={`alert alert--${variant}`}>
      <div className="alert-icon" />
      <div className="alert-content">
        {title && <div className="alert-title">{title}</div>}
        <div className="alert-body">{children}</div>
      </div>
    </div>;
};

## Setting up Google Cloud Storage

### 1. Add integration

<p>
  Select <strong>Google Cloud Storage</strong> from the{" "}
  <a href="https://app.superblocks.com/integrations/gcs">integrations page</a>.
</p>

### 2. Configure settings

Fill out the form with the following settings:

| Setting             | Required                                   | Description                                                                                                                                     |
| ------------------- | ------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------- |
| Name                | <span className="table-checkmark">✓</span> | Name that will be displayed to users when selecting this integration in Superblocks                                                             |
| Service Account Key | <span className="table-checkmark">✓</span> | Paste your Google [Service Account Key](https://cloud.google.com/iam/docs/creating-managing-service-account-keys#creating_service_account_keys) |

### 3. Test and save

Click **Test Connection** to check that Superblocks can connect to the data source.

<Alert type="info">
  If using Superblocks Cloud, add these Superblocks IPs to your allowlist (not necessary for Hybrid or Cloud-Prem deployments). See the <a href="/integrations/auth/guides/configure-ip-allowlist-for-databases">Configure IP allowlist for databases</a> guide for more information.
</Alert>

After connecting successfully, click **Create** to save the integration.

### 4. Set data tags

Optionally, configure different data tags for [separate development environments](/development-lifecycle/build/data-tags).

<Alert type="success">
  <IntegrationSuccess integrationName="Google Cloud Storage" />
</Alert>

## Creating Google Cloud Storage steps

Connect to your GCS integration from Superblocks by creating steps in Application APIs, Workflows, and Scheduled Jobs. A GCS step can perform the following actions:

* List files
* Read file
* Delete file
* Upload file
* Upload multiple files
* List buckets
* Generate presigned URL

## Troubleshooting

Check out our guide on [common errors across database integrations](/integrations/troubleshooting/troubleshooting-databases). If you are encountering an error that you don't see in the guide, or the provided steps are insufficient to resolve the error, please contact us at [help@superblocks.com](mailto:help@superblocks.com).
