Apache Kafka via Confluent Platform
Self-managed Apache Kafka deployed with Confluent Platform for event streaming, durable logs, and integration pipelines.
Large — 600,000 to 2,000,000 issues or 10,000 to 100,000 users
Monthly cost
$461.52
Annual cost
$5,538/year
| Compute | $461.52 |
| Storage | $0.00 |
| Other | $0.00 |
| Role | Instance | vCPU | GB RAM | Storage |
|---|---|---|---|---|
| Application | 2 × n2-standard-8 | 8 | 16 | — |
| Database | 1 × n2-standard-4 | 4 | 16 | — |
This sizing supports a large Jira Data Center deployment, accommodating 600,000 to 2,000,000 issues or 10,000 to 100,000 users, with two n2-standard-8 nodes and one n2-standard-4 node. The primary cost driver is compute, accounting for the entire $0.13 monthly cost. This configuration prioritizes a large user/issue count over high availability, as HA is disabled, which significantly reduces infrastructure complexity and cost.
Share the current URL or copy the launch 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_instance" "application_1" {
count = 2
name = "jira-data-center-application-1-${count.index + 1}"
machine_type = "n2-standard-8"
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 {}
}
labels = {
app = "jira-data-center"
role = "application"
}
}
resource "google_compute_instance" "database_2" {
count = 1
name = "jira-data-center-database-2-${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 {}
}
labels = {
app = "jira-data-center"
role = "database"
}
}
Reference architecture: Jira Data Center for large, version Jira Data Center 9.12 benchmark guidance, retrieved April 13, 2026.
Pricing: Google Cloud pricing snapshot, retrieved May 6, 2026.
Commercial pricing only. GovCloud, sovereign cloud, and discounts beyond those shown are not modelled.
Estimate excludes shared-home storage, managed database Multi-AZ overhead, Marketplace app overhead, and other supporting services not explicitly sized in the recommendation summary.
The HA toggle models front-end load balancer overhead only; Atlassian Data Center clustering itself is already represented in the base node counts.
Self-managed Apache Kafka deployed with Confluent Platform for event streaming, durable logs, and integration pipelines.
Self-hosted CockroachDB for resilient SQL workloads that need distributed transactions and scale-out storage.
Self-managed Confluence Data Center for enterprise documentation, knowledge bases, and collaborative editing.