psl

Pub/Sub Lite

Analytics & IoTGCP
General

General information about the service.

Description

Pub/Sub Lite is a high-volume messaging service with zonal storage for cost-effective streaming analytics. It offers predictable pricing with provisioned capacity.

Service ID

pubsublite.googleapis.com

Resource Pattern

projects/{project}/locations/{zone}/topics/{topic}

Chat

Powered by AI

Talk to this service to learn more about it.

Suggested questions:

Naming

The conventions, rules, and restrictions for naming this service.

Naming Convention

psl-{workload}-{env}

Length

4-63

Valid Characters

Lowercase letters, numbers, hyphens

Scope

zonal

Code

Deploy your infrastructure as code using your preferred tooling.

Official DocumentationTerraform
terraform
1resource "google_pubsub_lite_topic" "main" {
2 name = "psl-${var.workload}-${var.environment}"
3 project = var.project_id
4 partition_config {
5 count = 1
6 }
7 retention_config {
8 per_partition_bytes = 32212254720
9 }
10}
Utilities

Utilities to support app deployment or configuration.