Skip to content

Commit

Permalink
Changed the default limit to 0, which mean no limit for the token
Browse files Browse the repository at this point in the history
  • Loading branch information
npalm committed Dec 11, 2017
1 parent dd365ba commit a339168
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ All variables and defaults:
| runners_gitlab_url | URL of the gitlab instance to connect to. | string | - | yes |
| runners_idle_count | Idle count of the runners, will be used in the runner config.toml | string | `0` | no |
| runners_idle_time | Idle time of the runners, will be used in the runner config.toml | string | `600` | no |
| runners_limit | Limit for the runners, will be used in the runner config.toml | string | `1` | no |
| runners_limit | Limit for the runners, will be used in the runner config.toml | string | `0` | no |
| runners_name | Name of the runner, will be used in the runner config.toml | string | - | yes |
| runners_privilled | Runners will run in privilled mode, will be used in the runner config.toml | string | `true` | no |
| runners_token | Token for the runner, will be used in the runner config.toml | string | - | yes |
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ variable "runners_token" {

variable "runners_limit" {
description = "Limit for the runners, will be used in the runner config.toml"
default = 1
default = 0
}

variable "runners_concurrent" {
Expand Down

0 comments on commit a339168

Please sign in to comment.