Skip to content

Instantly share code, notes, and snippets.

@un1xman
Created May 1, 2021 22:29
Show Gist options
  • Save un1xman/63a3d26b26f56e948bfa649a25944f34 to your computer and use it in GitHub Desktop.
Save un1xman/63a3d26b26f56e948bfa649a25944f34 to your computer and use it in GitHub Desktop.
Terraform Google Cloud PubSub Module
resource "google_pubsub_topic" "example" {
name = "example-topic"
}
resource "google_pubsub_subscription" "example" {
name = "example-subscription"
topic = un1x-topic
labels = {
foo = "bar"
}
# 20 minutes
message_retention_duration = "1200s"
retain_acked_messages = true
ack_deadline_seconds = 20
expiration_policy {
ttl = "300000.5s"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment