CloudEstimate

Size Redis Enterprise on Google Cloud

Extra Small — up to 50 GB working set

Monthly cost

$320.96

Annual cost

$3,852/year

Line-item breakdown

Compute $293.46
Storage $27.50
Other $0.00

Components provisioned

Role Instance vCPU GB RAM Storage
Cluster Node 1 × n2-standard-4 4 16 100 GB
Admin Node 1 × n2-standard-2 2 8 50 GB

Why this sizing

Redis Enterprise at the extra small tier maps to the dev-small reference architecture on Google Cloud in us-central1. Compute is the largest line item in this estimate, accounting for 91% of monthly cost. High availability is not included here, so this baseline stays lean and leaves failover headroom out of the monthly total. Cluster Node carries the heaviest storage footprint at 100 GB.

Export

Share the current URL or copy the launch Terraform baseline.

Open generic GCP calculator
GCP Terraform baseline
terraform {
  required_version = ">= 1.6.0"

  required_providers {
    google = {
      source  = "hashicorp/google"
      version = "~> 6.0"
    }
  }
}

variable "project_id" {
  description = "Google Cloud project ID for this deployment."
  type        = string
  default     = "replace-with-project-id"
}

provider "google" {
  project = var.project_id
  region  = "us-central1"
  zone    = "us-central1-a"
}

# Generated for Google Cloud from the current estimate state.

resource "google_compute_disk" "cluster_node_1_data" {
  count = 1
  name  = "redis-enterprise-cluster-node-1-data-${count.index + 1}"
  type  = "hyperdisk-balanced"
  zone  = "us-central1-a"
  size  = 100
}

resource "google_compute_instance" "cluster_node_1" {
  count        = 1
  name         = "redis-enterprise-cluster-node-1-${count.index + 1}"
  machine_type = "n2-standard-4"
  zone         = "us-central1-a"

  boot_disk {
    initialize_params {
      image = "projects/debian-cloud/global/images/family/debian-12"
      size  = 50
      type  = "pd-balanced"
    }
  }

  network_interface {
    network = "default"
    access_config {}
  }
  attached_disk {
    source = google_compute_disk.cluster_node_1_data[count.index].id
    mode   = "READ_WRITE"
  }

  labels = {
    app  = "redis-enterprise"
    role = "cluster-node"
  }
}


resource "google_compute_disk" "admin_node_2_data" {
  count = 1
  name  = "redis-enterprise-admin-node-2-data-${count.index + 1}"
  type  = "pd-ssd"
  zone  = "us-central1-a"
  size  = 50
}

resource "google_compute_instance" "admin_node_2" {
  count        = 1
  name         = "redis-enterprise-admin-node-2-${count.index + 1}"
  machine_type = "n2-standard-2"
  zone         = "us-central1-a"

  boot_disk {
    initialize_params {
      image = "projects/debian-cloud/global/images/family/debian-12"
      size  = 50
      type  = "pd-balanced"
    }
  }

  network_interface {
    network = "default"
    access_config {}
  }
  attached_disk {
    source = google_compute_disk.admin_node_2_data[count.index].id
    mode   = "READ_WRITE"
  }

  labels = {
    app  = "redis-enterprise"
    role = "admin-node"
  }
}

Related views

Sources

Reference architecture: Redis Enterprise for dev-small, version 7.22, retrieved April 12, 2026.

https://redis.io/docs/latest/operate/rs/7.22/installing-upgrading/install/plan-deployment/hardware-requirements/

Pricing: Google Cloud pricing snapshot, retrieved April 12, 2026.

Commercial pricing only. GovCloud, sovereign cloud, and discounts beyond those shown are not modelled.

Not included in this estimate

  • Vendor licensing and support
  • Professional services
  • Network egress
  • Compliance controls
  • Backup storage
  • Monitoring

Based on Redis Enterprise hardware guidance and encoded as a VM-based planning baseline.

Estimate excludes Redis licensing, cross-region replication, backups, and network transfer.

Other workloads on Google Cloud