From 7fa8ffee884a68034cbd2a682affe005a626be0e Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Tue, 20 Jul 2021 22:31:20 -0400 Subject: [PATCH] Allow external connections. --- terraform/modules/cf_to_pubsub/cf_to_pubsub.tf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/terraform/modules/cf_to_pubsub/cf_to_pubsub.tf b/terraform/modules/cf_to_pubsub/cf_to_pubsub.tf index 8cfe250..a46baef 100644 --- a/terraform/modules/cf_to_pubsub/cf_to_pubsub.tf +++ b/terraform/modules/cf_to_pubsub/cf_to_pubsub.tf @@ -54,6 +54,8 @@ resource "google_cloudfunctions_function" "function" { source_archive_object = google_storage_bucket_object.remote_archive.name trigger_http = true entry_point = "main" + ingress_settings = "ALLOW_ALL" + # ingress_settings = "ALLOW_INTERNAL_ONLY" depends_on = [ var.service_cloudbuild