Skip to content

Commit 4072a3d

Browse files
chore: update variable description
1 parent 33d5a02 commit 4072a3d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

modules/multi-runner/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ variable "multi_runner_config" {
194194
enable_ephemeral_runners: "Enable ephemeral runners, runners will only be used once."
195195
enable_job_queued_check: "Enables JIT configuration for creating runners instead of registration token based registraton. JIT configuration will only be applied for ephemeral runners. By default JIT configuration is enabled for ephemeral runners an can be disabled via this override. When running on GHES without support for JIT configuration this variable should be set to true for ephemeral runners."
196196
enable_on_demand_failover_for_errors: "Enable on-demand failover. For example to fall back to on demand when no spot capacity is available the variable can be set to `InsufficientInstanceCapacity`. When not defined the default behavior is to retry later."
197-
custom_scale_errors: "List of custom aws error codes that should trigger retry during scale up."
197+
custom_scale_errors: "List of aws error codesthat should trigger retry during scale up. This list will replace the default errors defined in the variable `defaultScaleErrors` in https://github.com/github-aws-runners/terraform-aws-github-runner/blob/main/lambdas/functions/control-plane/src/aws/runners.ts"
198198
enable_organization_runners: "Register runners to organization, instead of repo level"
199199
enable_runner_binaries_syncer: "Option to disable the lambda to sync GitHub runner distribution, useful when using a pre-build AMI."
200200
enable_ssm_on_runners: "Enable to allow access the runner instances for debugging purposes via SSM. Note that this adds additional permissions to the runner instances."

modules/runners/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -714,7 +714,7 @@ variable "enable_on_demand_failover_for_errors" {
714714
}
715715

716716
variable "custom_scale_errors" {
717-
description = "List of custom aws error codes that should trigger retry during scale up."
717+
description = "List of aws error codesthat should trigger retry during scale up. This list will replace the default errors defined in the variable `defaultScaleErrors` in https://github.com/github-aws-runners/terraform-aws-github-runner/blob/main/lambdas/functions/control-plane/src/aws/runners.ts"
718718
type = list(string)
719719
default = []
720720
}

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ variable "enable_runner_on_demand_failover_for_errors" {
284284
}
285285

286286
variable "custom_scale_errors" {
287-
description = "List of custom aws error codes that should trigger retry during scale up."
287+
description = "List of aws error codesthat should trigger retry during scale up. This list will replace the default errors defined in the variable `defaultScaleErrors` in https://github.com/github-aws-runners/terraform-aws-github-runner/blob/main/lambdas/functions/control-plane/src/aws/runners.ts"
288288
type = list(string)
289289
default = []
290290
}

0 commit comments

Comments
 (0)