FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
Commit 85000c58 authored by Ed Kirk's avatar Ed Kirk
Browse files

chore: remove pubsub module

parent e7138753
No related branches found
No related tags found
1 merge request!7Add initial (trivial) pubsub module and faas module that supports pubsub
module "pubsub" {
source = "./modules/pubsub"
topic_name = "faas-test"
resource "google_pubsub_topic" "faas_test" {
name = "faas-test"
project = local.project
}
module "faas_service" {
......@@ -14,7 +14,7 @@ module "faas_service" {
timeout_seconds = 10
triggers = {
pubsub_topic_id = module.pubsub.main_topic_id
pubsub_topic_id = google_pubsub_topic.faas_test.id
}
function_env = [
......@@ -41,7 +41,7 @@ module "faas_service_set_retry" {
timeout_seconds = 20
triggers = {
pubsub_topic_id = module.pubsub.main_topic_id
pubsub_topic_id = google_pubsub_topic.faas_test.id
}
retry_count = 4
......
resource "google_pubsub_topic" "main" {
name = var.topic_name
}
output "main_topic_id" {
value = google_pubsub_topic.main.id
description = "The ID of the main Pub/Sub topic."
}
variable "topic_name" {
type = string
description = "The name of the Pub/Sub topic."
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment