Skip to content

Commit

Permalink
Merge pull request #40500 from hashicorp/ci-apigatewayv2-parallelism
Browse files Browse the repository at this point in the history
ci: Prevent over-quota exceptions
  • Loading branch information
gdavison authored Dec 10, 2024
2 parents 4277daf + 5c95055 commit 6871f30
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .teamcity/components/generated/services_all.kt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ val services = mapOf(
"amp" to ServiceSpec("AMP (Managed Prometheus)", parallelismOverride = 10),
"amplify" to ServiceSpec("Amplify"),
"apigateway" to ServiceSpec("API Gateway", vpcLock = true),
"apigatewayv2" to ServiceSpec("API Gateway V2", vpcLock = true),
"apigatewayv2" to ServiceSpec("API Gateway V2", vpcLock = true, parallelismOverride = 10),
"appautoscaling" to ServiceSpec("Application Auto Scaling", vpcLock = true),
"appconfig" to ServiceSpec("AppConfig"),
"appfabric" to ServiceSpec("AppFabric", regionOverride = "us-east-1"),
Expand Down
3 changes: 2 additions & 1 deletion internal/generate/teamcity/acctest_services.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ service "apigateway" {
}

service "apigatewayv2" {
vpc_lock = true
vpc_lock = true
parallelism = 10
}

service "appautoscaling" {
Expand Down

0 comments on commit 6871f30

Please sign in to comment.