cq
Cloud Quotas
ManagementGCP
General
General information about the service.
Description
Cloud Quotas lets you view and manage quota limits for Google Cloud services. Monitor usage, request increases, and set quota overrides to control resource consumption.
Service ID
cloudquotas.googleapis.comResource Pattern
projects/{project}/locations/{location}/quotaInfos/{quota}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
cq-{workload}-{env}Length
4-63
Valid Characters
Lowercase letters, numbers, hyphens
Scope
global
Code
Deploy your infrastructure as code using your preferred tooling.
Official Documentation
terraform
1resource "google_project_service" "cloud_quotas" {2 project = var.project_id3 service = "cloudquotas.googleapis.com"4}56resource "google_service_usage_consumer_quota_override" "main" {7 provider = google-beta8 project = var.project_id9 service = "compute.googleapis.com"10 metric = "compute.googleapis.com/cpus"11 limit = "/project/region"12 override_value = "100"13}
Utilities
Utilities to support app deployment or configuration.