Confluence Data Center
Self-managed Confluence Data Center for enterprise documentation, knowledge bases, and collaborative editing.
Extra Small — up to 50 requests per second
Monthly cost
$263.64
Annual cost
$3,164/year
| Compute | $195.64 |
| Storage | $68.00 |
| Other | $0.00 |
| Role | Instance | vCPU | GB RAM | Storage |
|---|---|---|---|---|
| Repository | 1 × n2-standard-4 | 4 | 16 | 400 GB |
Sonatype Nexus Repository at the extra small tier maps to the xs reference architecture on Google Cloud in us-central1. Compute is the largest line item in this estimate, accounting for 74% of monthly cost. High availability is not included here, so this baseline stays lean and leaves failover headroom out of the monthly total. Repository carries the heaviest storage footprint at 400 GB.
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_disk" "repository_1_data" {
count = 1
name = "nexus-repository-repository-1-data-${count.index + 1}"
type = "pd-ssd"
zone = "us-central1-a"
size = 400
}
resource "google_compute_instance" "repository_1" {
count = 1
name = "nexus-repository-repository-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.repository_1_data[count.index].id
mode = "READ_WRITE"
}
labels = {
app = "nexus-repository"
role = "repository"
}
}
Reference architecture: Sonatype Nexus Repository for xs, version 3.78+ / cloud-native AWS ref archs updated 2026-04-07, retrieved April 13, 2026.
https://help.sonatype.com/en/sonatype-nexus-repository-reference-architectures.html
Pricing: Google Cloud pricing snapshot, retrieved April 12, 2026.
Commercial pricing only. GovCloud, sovereign cloud, and discounts beyond those shown are not modelled.
Based on Sonatype Nexus Repository reference architectures and translated into VM-style planning inputs for multi-cloud estimation.
Estimate excludes external object storage capacity, backup infrastructure, and multi-region disaster recovery.
Self-managed Confluence Data Center for enterprise documentation, knowledge bases, and collaborative editing.
Self-managed GitLab for source control, CI/CD, and DevSecOps workflows.
Self-hosted JFrog Artifactory for binary repositories, release promotion, and software supply chain distribution.