Skip to content

Commit

Permalink
updating
Browse files Browse the repository at this point in the history
  • Loading branch information
arnol377 committed Oct 17, 2024
1 parent 5c44591 commit ecd64ef
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 4 deletions.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ module "github-runner" {

extra_environment_vars = local.proxy_vars
github_runner_permissions_arn = aws_iam_policy.admin_policy.arn

desired_count = var.desired_count
server_url = var.server_url
runner_labels = [
lower(var.repo_org),
Expand Down
4 changes: 4 additions & 0 deletions providers.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
provider "github" {
owner = var.repo_org
base_url = var.base_url
}
3 changes: 0 additions & 3 deletions providers.tf.tmp

This file was deleted.

1 change: 1 addition & 0 deletions varfiles/edtsb.tfvars
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# The name of the ECS cluster
namespace = "edtsb-ghe-runner"
repo_org = "EDTSB"
desired_count = 1
8 changes: 8 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -83,3 +83,11 @@ variable "create_ecs_cluster" {
type = bool
default = false
}

variable desired_count {
default = 3
}

variable base_url {
default = "https://github.e.it.census.gov/"
}

0 comments on commit ecd64ef

Please sign in to comment.