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.comResource Pattern
projects/{project}/zones/{zone}/disks/{disk}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
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 Documentation
terraform
1resource "google_compute_disk" "main" {2 name = "hd-${var.workload}-${var.environment}"3 type = "hyperdisk-extreme"4 zone = var.zone5 size = 10006 provisioned_iops = 1000007 provisioned_throughput = 24008}
Utilities
Utilities to support app deployment or configuration.