hd

Hyperdisk

StorageGCP
General

General information about the service.

Description

Hyperdisk is a next-generation block storage for Compute Engine that decouples storage performance from VM type. It offers dynamically adjustable IOPS and throughput for demanding workloads.

Service ID

compute.googleapis.com

Resource Pattern

projects/{project}/zones/{zone}/disks/{disk}

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

hd-{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_disk" "main" {
2 name = "hd-${var.workload}-${var.environment}"
3 type = "hyperdisk-extreme"
4 zone = var.zone
5 size = 1000
6 provisioned_iops = 100000
7 provisioned_throughput = 2400
8}
Utilities

Utilities to support app deployment or configuration.