Skip to content

Commit

Permalink
Limit max Cloud Run instances to 10
Browse files Browse the repository at this point in the history
  • Loading branch information
markhobson committed Jun 18, 2024
1 parent aa6975e commit 227deee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cloud/schemes/cloud-run/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ resource "google_cloud_run_v2_service" "schemes" {
}
scaling {
min_instance_count = var.keep_idle ? 1 : 0
max_instance_count = 100
max_instance_count = 10
}
service_account = google_service_account.cloud_run_schemes.email
}
Expand Down

0 comments on commit 227deee

Please sign in to comment.