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.comResource Pattern
projects/{project}/zones/{zone}/nodeGroups/{group}References
Chat
Powered by AITalk 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 Documentation
terraform
1resource "google_compute_node_template" "main" {2 name = "stn-${var.workload}-${var.environment}-tmpl"3 region = var.region4 node_type = "n1-node-96-624"5}67resource "google_compute_node_group" "main" {8 name = "stn-${var.workload}-${var.environment}"9 zone = var.zone10 node_template = google_compute_node_template.main.id11 size = 112}
Utilities
Utilities to support app deployment or configuration.