You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* error checking for initial API token call ([#1080](https://github.com/cattle-ops/terraform-aws-gitlab-runner/issues/1080)) ([6b3740a](https://github.com/cattle-ops/terraform-aws-gitlab-runner/commit/6b3740a5c63a539e844a89ec810e949d3d1bfca6))
9
+
10
+
11
+
### Bug Fixes
12
+
13
+
* rename `pull_policies` to `pull_policy` in `config.toml` ([#1084](https://github.com/cattle-ops/terraform-aws-gitlab-runner/issues/1084)) ([df39014](https://github.com/cattle-ops/terraform-aws-gitlab-runner/commit/df39014d8eaacd0535c3cd4ab9e60899a708eea5))
14
+
* repair errors in startup shell script ([#1087](https://github.com/cattle-ops/terraform-aws-gitlab-runner/issues/1087)) ([9b7c465](https://github.com/cattle-ops/terraform-aws-gitlab-runner/commit/9b7c4653d71eaa8470c343083c8dfe05ff9c8911))
@@ -200,7 +200,7 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file
200
200
| <aname="input_runner_worker_docker_machine_instance_spot"></a> [runner\_worker\_docker\_machine\_instance\_spot](#input\_runner\_worker\_docker\_machine\_instance\_spot)| enable = Enable spot instances for the Runner Worker.<br>max\_price = The maximum price willing to pay. By default the price is limited by the current on demand price for the instance type chosen. | <pre>object({<br> enable = optional(bool, true)<br> max_price = optional(string, "on-demand-price")<br> })</pre> |`{}`| no |
201
201
| <aname="input_runner_worker_docker_machine_role"></a> [runner\_worker\_docker\_machine\_role](#input\_runner\_worker\_docker\_machine\_role)| additional\_tags = Map of tags that will be added to the Runner Worker.<br>assume\_role\_policy\_json = Assume role policy for the Runner Worker.<br>policy\_arns = List of ARNs of IAM policies to attach to the Runner Workers.<br>profile\_name = Name of the IAM profile to attach to the Runner Workers. | <pre>object({<br> additional_tags = optional(map(string), {})<br> assume_role_policy_json = optional(string, "")<br> policy_arns = optional(list(string), [])<br> profile_name = optional(string, "")<br> })</pre> |`{}`| no |
202
202
| <aname="input_runner_worker_docker_machine_security_group_description"></a> [runner\_worker\_docker\_machine\_security\_group\_description](#input\_runner\_worker\_docker\_machine\_security\_group\_description)| A description for the Runner Worker security group |`string`|`"A security group containing Runner Worker instances"`| no |
| <aname="input_runner_worker_docker_services"></a> [runner\_worker\_docker\_services](#input\_runner\_worker\_docker\_services)| Starts additional services with the Docker container. All fields must be set (examine the Dockerfile of the service image for the entrypoint - see ./examples/runner-default/main.tf) | <pre>list(object({<br> name = string<br> alias = string<br> entrypoint = list(string)<br> command = list(string)<br> }))</pre> |`[]`| no |
205
205
| <aname="input_runner_worker_docker_services_volumes_tmpfs"></a> [runner\_worker\_docker\_services\_volumes\_tmpfs](#input\_runner\_worker\_docker\_services\_volumes\_tmpfs)| Mount a tmpfs in gitlab service container. https://docs.gitlab.com/runner/executors/docker.html#mounting-a-directory-in-ram| <pre>list(object({<br> volume = string<br> options = string<br> }))</pre> |`[]`| no |
206
206
| <aname="input_runner_worker_docker_volumes_tmpfs"></a> [runner\_worker\_docker\_volumes\_tmpfs](#input\_runner\_worker\_docker\_volumes\_tmpfs)| Mount a tmpfs in Executor container. https://docs.gitlab.com/runner/executors/docker.html#mounting-a-directory-in-ram| <pre>list(object({<br> volume = string<br> options = string<br> }))</pre> |`[]`| no |
0 commit comments