Skip to content

Commit 1ef3da2

Browse files
authored
Add GAE standard trigger for the JS repo (#42)
1 parent febe966 commit 1ef3da2

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

tf/modules/repo-ci-triggers/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ variable "run_on" {
6565
type = set(string)
6666
description = "The GCP resources to run the tests on."
6767
validation {
68-
condition = alltrue([for r in var.run_on : contains(["local", "gke", "gce", "gae", "cloud-run", "cloud-functions-gen2"], r)])
69-
error_message = "Variable run_on must be one of: 'local' | 'gke' | 'gce' | 'gae' | 'cloud-run' | 'cloud-functions-gen2'."
68+
condition = alltrue([for r in var.run_on : contains(["local", "gke", "gce", "gae", "gae-standard", "cloud-run", "cloud-functions-gen2"], r)])
69+
error_message = "Variable run_on must be one of: 'local' | 'gke' | 'gce' | 'gae' | 'gae-standard' | 'cloud-run' | 'cloud-functions-gen2'."
7070
}
7171
}
7272

tf/persistent/repo-ci-triggers.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ module "java" {
2727
module "js" {
2828
source = "../modules/repo-ci-triggers"
2929
repository = "opentelemetry-operations-js"
30-
run_on = ["local", "gce", "gke", "gae", "cloud-run", "cloud-functions-gen2"]
30+
run_on = ["local", "gce", "gke", "gae", "gae-standard", "cloud-run", "cloud-functions-gen2"]
3131
}
3232

3333
module "go" {

0 commit comments

Comments
 (0)