We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e38cc1 commit f035df5Copy full SHA for f035df5
infra/gcp/terraform/boskos/main.tf
@@ -20,9 +20,16 @@ resource "google_folder" "boskos" {
20
}
21
22
locals {
23
- boskos_projects = [
+ boskos_e2e_projects = [
24
for i in range("001", "160") : format("k8s-infra-e2e-boskos-%03d", i)
25
]
26
+ boskos_scale_e2e_projects = [
27
+ for i in range("001", "30") : format("k8s-infra-e2e-boskos-scale-%02d", i)
28
+ ]
29
+ boskos_projects = concat(
30
+ local.boskos_e2e_projects,
31
+ local.boskos_scale_e2e_projects,
32
+ )
33
34
35
module "project" {
0 commit comments