You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
flux2/tests/integration/terraform/gcp/pubsub.tf

12 lines
312 B
HCL

resource "google_pubsub_topic" "pubsub" {
name = local.name
labels = var.tags
message_retention_duration = "7200s"
}
resource "google_pubsub_subscription" "sub" {
project = var.gcp_project_id
name = local.name
topic = google_pubsub_topic.pubsub.name
}