mirror of https://github.com/fluxcd/flux2.git
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.
12 lines
312 B
Terraform
12 lines
312 B
Terraform
2 years ago
|
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
|
||
|
}
|