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

# CockroachDB Cloud Overview

export const InternalLink = ({version, path = "", children, ...props}) => {
  let detectedVersion = version || "stable";
  if (typeof window !== 'undefined' && !version) {
    const match = window.location.pathname.match(/\/docs\/([^/]+)/);
    if (match) {
      detectedVersion = match[1];
    }
  }
  const normalizedPath = path.startsWith("/") ? path.slice(1) : path;
  return <a href={`/docs/${detectedVersion}/${normalizedPath}`} {...props}>
      {children}
    </a>;
};

<a id="overview" />

## CockroachDB Cloud Overview

CockroachDB Cloud is a fully-managed service run by Cockroach Labs, which simplifies the deployment and management of CockroachDB. This page provides an introduction to CockroachDB Cloud and provides an overview of each type of cluster: CockroachDB Standard, CockroachDB Basic, and CockroachDB Advanced.

To get started right away, you can [sign up for a CockroachDB Cloud account](https://cockroachlabs.cloud/) and <InternalLink path="create-your-cluster">create a cluster</InternalLink> using <InternalLink path="free-trial">trial credits</InternalLink>.

## Plans

When you create a cluster in CockroachDB Cloud, you select its plan. A CockroachDB Cloud organization can include clusters of each plan. This section provides an overview of each plan. For a more detailed comparison, refer to [CockroachDB Pricing](https://www.cockroachlabs.com/pricing) and <InternalLink path="costs">Understand CockroachDB Cloud Costs</InternalLink>.

* **CockroachDB Basic**: Usage-based pricing. Basic clusters are ideal for smaller organizations or trial evaluations of CockroachDB.
* **CockroachDB Standard**: Compute for CockroachDB Standard is pre-provisioned and storage is usage-based. CockroachDB Basic clusters can be <InternalLink path="change-plan-between-basic-and-standard">upgraded to CockroachDB Standard</InternalLink>.
* **CockroachDB Advanced**: Fully pre-provisioned, with additional security and compliance features.

You can also deploy CockroachDB Cloud in a **Bring-your-own-cloud (BYOC)** deployment model, where CockroachDB Cloud is hosted in your own account rather than in an account managed by Cockroach Labs. This model allows you to take more control of security and take advantage of existing cloud service credits or discounts.

## Next steps

* <InternalLink path="costs">Understand CockroachDB Cloud Costs</InternalLink>
* <InternalLink path="plan-your-cluster-basic">Plan a CockroachDB Basic cluster</InternalLink> and <InternalLink path="create-a-basic-cluster">Create a CockroachDB Basic cluster</InternalLink>.
* <InternalLink path="plan-your-cluster">Plan a CockroachDB Standard cluster</InternalLink> and <InternalLink path="create-your-cluster">Create a CockroachDB Standard cluster</InternalLink>
* <InternalLink path="plan-your-cluster-advanced">Plan a CockroachDB Advanced cluster</InternalLink> and <InternalLink path="create-an-advanced-cluster">Create a CockroachDB Advanced cluster</InternalLink>
* <InternalLink path="byoc-overview">Plan a CockroachDB BYOC deployment</InternalLink>
