gcs
Cloud Storage
StorageGCP
General
General information about the service.
Description
Google Cloud Storage provides unified object storage for developers and enterprises with global edge caching.
Service ID
storage.googleapis.comResource Pattern
projects/_/buckets/{bucket}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
gcs-{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_storage_bucket" "main" {2 name = "gcs-${var.project}-${var.environment}"3 location = var.region4 force_destroy = false56 uniform_bucket_level_access = true7}
Utilities
Utilities to support app deployment or configuration.