Skip to content

Commit

Permalink
Autoformatting TF Code
Browse files Browse the repository at this point in the history
  • Loading branch information
arnol377 committed Oct 23, 2024
1 parent f91139c commit 498cd59
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ 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
desired_count = var.desired_count
server_url = var.server_url
runner_labels = [
lower(var.repo_org),
"${data.aws_caller_identity.current.account_id}-${data.aws_region.current.name}",
Expand Down
2 changes: 1 addition & 1 deletion providers.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
provider "github" {
owner = var.repo_org
owner = var.repo_org
base_url = var.base_url
}
4 changes: 2 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,10 @@ variable "create_ecs_cluster" {
default = false
}

variable desired_count {
variable "desired_count" {
default = 3
}

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

0 comments on commit 498cd59

Please sign in to comment.