pd
Persistent Disk
StorageGCP
General
General information about the service.
Description
Google Persistent Disk provides reliable, high-performance block storage for VM instances.
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
pd-{workload}-{environment}Length
1-63
Valid Characters
Lowercase letters, numbers, hyphens
Scope
project
Code
Deploy your infrastructure as code using your preferred tooling.
Official Documentation
terraform
1resource "google_compute_disk" "main" {2 name = "pd-${var.environment}"3 type = "pd-ssd"4 zone = var.zone5 size = 1006}
Utilities
Utilities to support app deployment or configuration.