Skip to content
Snippets Groups Projects
Verified Commit 28fc40c6 authored by Alex Timmermann's avatar Alex Timmermann
Browse files

feat(infra): allow Cloud Functions to scale to 0

this saves us money

Refs: HOLI-10945
parent ebb2720c
No related branches found
No related tags found
No related merge requests found
...@@ -50,7 +50,7 @@ resource "google_cloudfunctions2_function" "event_listener_function" { ...@@ -50,7 +50,7 @@ resource "google_cloudfunctions2_function" "event_listener_function" {
all_traffic_on_latest_revision = true all_traffic_on_latest_revision = true
ingress_settings = "ALLOW_INTERNAL_ONLY" ingress_settings = "ALLOW_INTERNAL_ONLY"
min_instance_count = 1 min_instance_count = 0
max_instance_count = 1 max_instance_count = 1
} }
......
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