Skip to content

Commit

Permalink
feat: dynamic cpu and memory vars
Browse files Browse the repository at this point in the history
  • Loading branch information
rstuhlmuller authored Mar 6, 2024
1 parent aa5142c commit 1f68cd3
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -81,4 +81,16 @@ variable "tags" {
variable "ecs_task_execution_role_name" {
type = string
default = "aws-ecs-github-runner-task-execution-role"
}
}

variable "cpu" {
type = number
description = "Number of CPUs for each runner"
default = 1
}

variable "memory" {
type = number
description = "Memory in GB for each runner"
default = 1
}

0 comments on commit 1f68cd3

Please sign in to comment.