Skip to content

Commit

Permalink
Merge pull request #55 from lmilbaum/environments
Browse files Browse the repository at this point in the history
Set gitlab runner instance type
  • Loading branch information
lmilbaum authored Sep 22, 2023
2 parents e536dff + 8644638 commit 5cce25e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions modules/runner/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,10 @@ module "runner-instance-1" {
max_price = "on-demand-price"
}

runner_worker_docker_machine_instance = {
types = ["t3.micro"]
}

runner_networking = {
allow_incoming_ping_security_group_ids = [data.aws_security_group.default.id]
}
Expand Down Expand Up @@ -224,6 +228,10 @@ module "runner-instance-2" {
max_price = "on-demand-price"
}

runner_worker_docker_machine_instance = {
types = ["t3.micro"]
}

runner_networking = {
allow_incoming_ping_security_group_ids = [data.aws_security_group.default.id]
}
Expand Down

0 comments on commit 5cce25e

Please sign in to comment.