ba
Billing Account
GeneralGCP
General
General information about the service.
Description
Google Cloud Billing allows you to manage billing accounts, view costs, and set budgets for your GCP resources.
Service ID
cloudbilling.googleapis.comResource Pattern
billingAccounts/{billing_account}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
ba-{workload}-{environment}Length
1-30
Valid Characters
Letters, numbers, hyphens
Scope
organization
Code
Deploy your infrastructure as code using your preferred tooling.
Official Documentation
terraform
1resource "google_billing_budget" "main" {2 billing_account = var.billing_account3 display_name = "ba-${var.environment}"45 budget_filter {6 projects = ["projects/${var.project_id}"]7 }89 amount {10 specified_amount {11 currency_code = "USD"12 units = "1000"13 }14 }15}
Utilities
Utilities to support app deployment or configuration.