-
-
Notifications
You must be signed in to change notification settings - Fork 329
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Auto register runners #44
Comments
The variable Define in the module the runner configuration as follow: gitlab_runner_registration_config = {
registration_token = "<registration token>"
tag_list = "<your tags, comma separated"
description = "<some description>"
locked_to_project = "true"
run_untagged = "false"
maximum_timeout = "3600"
} And DO NOT specify the For migration to the new setup simply add the runner token to the parameter store. Once the runner is started it will lookup required values in the parameter store. If the value is null a new runner will be created.
Once you have created the parameter, you have to remove the variable |
Currently it is required to register the runner before running the terraform scripts. In branch https://github.com/npalm/terraform-aws-gitlab-runner/tree/feature/auto-register-runner I am preparing scripts so that the runner can register itself based on the registration token. Runner tokens will be kept in the parameter store.
The text was updated successfully, but these errors were encountered: