ds
Cloud Datastore
DatabasesGCP
General
General information about the service.
Description
Cloud Datastore is a highly-scalable NoSQL document database for web and mobile applications. It is the predecessor to Firestore in Datastore mode, offering strong consistency and ACID transactions.
Service ID
datastore.googleapis.comResource Pattern
projects/{project}/databases/{database}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
ds-{workload}-{env}Length
4-63
Valid Characters
Lowercase letters, numbers, hyphens
Scope
regional
Code
Deploy your infrastructure as code using your preferred tooling.
Official Documentation
terraform
1resource "google_firestore_database" "main" {2 name = "ds-${var.workload}-${var.environment}"3 location_id = var.region4 type = "DATASTORE_MODE"5}
Utilities
Utilities to support app deployment or configuration.