stn

Sole-Tenant Nodes

Compute & WebGCP
General

General information about the service.

Description

Sole-tenant nodes provide dedicated physical servers for your Compute Engine VMs. Use them for workloads requiring physical isolation, licensing compliance, or specialized hardware.

Service ID

compute.googleapis.com

Resource Pattern

projects/{project}/zones/{zone}/nodeGroups/{group}

Chat

Powered by AI

Talk to this service to learn more about it.

Suggested questions:

Naming

The conventions, rules, and restrictions for naming this service.

Naming Convention

stn-{workload}-{env}

Length

1-63

Valid Characters

Lowercase letters, numbers, hyphens

Scope

zonal

Code

Deploy your infrastructure as code using your preferred tooling.

Official DocumentationTerraform
terraform
1resource "google_compute_node_template" "main" {
2 name = "stn-${var.workload}-${var.environment}-tmpl"
3 region = var.region
4 node_type = "n1-node-96-624"
5}
6
7resource "google_compute_node_group" "main" {
8 name = "stn-${var.workload}-${var.environment}"
9 zone = var.zone
10 node_template = google_compute_node_template.main.id
11 size = 1
12}
Utilities

Utilities to support app deployment or configuration.