Skip to content

Commit 573df39

Browse files
chore(main): release 9.2.3 (#1310)
🤖 I have created a release *beep* *boop* --- ## [9.2.3](9.2.2...9.2.3) (2025-08-14) ### Bug Fixes * allow HTTP egress traffic to all destinations ([#1303](#1303)) ([62bab5a](62bab5a)) * handle scaling properly when capacity_per_instance &gt; 1 with docker job runners ([#1313](#1313)) ([91d7681](91d7681)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --------- Co-authored-by: cattle-ops-releaser-2[bot] <134548870+cattle-ops-releaser-2[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 91d7681 commit 573df39

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "9.2.2"
2+
".": "9.2.3"
33
}

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## [9.2.3](https://github.com/cattle-ops/terraform-aws-gitlab-runner/compare/9.2.2...9.2.3) (2025-08-14)
4+
5+
6+
### Bug Fixes
7+
8+
* allow HTTP egress traffic to all destinations ([#1303](https://github.com/cattle-ops/terraform-aws-gitlab-runner/issues/1303)) ([62bab5a](https://github.com/cattle-ops/terraform-aws-gitlab-runner/commit/62bab5ad8539671e68415acd23839b0d468613a2))
9+
* handle scaling properly when capacity_per_instance &gt; 1 with docker job runners ([#1313](https://github.com/cattle-ops/terraform-aws-gitlab-runner/issues/1313)) ([91d7681](https://github.com/cattle-ops/terraform-aws-gitlab-runner/commit/91d7681792895dfdd02126c061b045eb53c8b08d))
10+
311
## [9.2.2](https://github.com/cattle-ops/terraform-aws-gitlab-runner/compare/9.2.1...9.2.2) (2025-06-06)
412

513

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file
8686

8787
| Name | Version |
8888
|------|---------|
89-
| <a name="provider_aws"></a> [aws](#provider\_aws) | 5.98.0 |
89+
| <a name="provider_aws"></a> [aws](#provider\_aws) | 6.8.0 |
9090
| <a name="provider_local"></a> [local](#provider\_local) | 2.5.3 |
9191
| <a name="provider_tls"></a> [tls](#provider\_tls) | 4.1.0 |
9292

@@ -244,7 +244,7 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file
244244
| <a name="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 |
245245
| <a name="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 |
246246
| <a name="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 |
247-
| <a name="input_runner_worker_egress_rules"></a> [runner\_worker\_egress\_rules](#input\_runner\_worker\_egress\_rules) | Map of egress rules for the Runner workers | <pre>map(object({<br/> from_port = optional(number, null)<br/> to_port = optional(number, null)<br/> protocol = string<br/> description = string<br/> cidr_block = optional(string, null)<br/> ipv6_cidr_block = optional(string, null)<br/> prefix_list_id = optional(string, null)<br/> security_group = optional(string, null)<br/> }))</pre> | <pre>{<br/> "allow_https_ipv4": {<br/> "cidr_block": "0.0.0.0/0",<br/> "description": "Allow HTTPS egress traffic to all destinations (IPv4)",<br/> "from_port": 443,<br/> "protocol": "tcp",<br/> "to_port": 443<br/> },<br/> "allow_https_ipv6": {<br/> "description": "Allow HTTPS egress traffic to all destinations (IPv6)",<br/> "from_port": 443,<br/> "ipv6_cidr_block": "::/0",<br/> "protocol": "tcp",<br/> "to_port": 443<br/> },<br/> "allow_ssh_ipv4": {<br/> "cidr_block": "0.0.0.0/0",<br/> "description": "Allow SSH egress traffic to all destinations (IPv4)",<br/> "from_port": 22,<br/> "protocol": "tcp",<br/> "to_port": 22<br/> },<br/> "allow_ssh_ipv6": {<br/> "description": "Allow SSH egress traffic to all destinations (IPv6)",<br/> "from_port": 22,<br/> "ipv6_cidr_block": "::/0",<br/> "protocol": "tcp",<br/> "to_port": 22<br/> }<br/>}</pre> | no |
247+
| <a name="input_runner_worker_egress_rules"></a> [runner\_worker\_egress\_rules](#input\_runner\_worker\_egress\_rules) | Map of egress rules for the Runner workers | <pre>map(object({<br/> from_port = optional(number, null)<br/> to_port = optional(number, null)<br/> protocol = string<br/> description = string<br/> cidr_block = optional(string, null)<br/> ipv6_cidr_block = optional(string, null)<br/> prefix_list_id = optional(string, null)<br/> security_group = optional(string, null)<br/> }))</pre> | <pre>{<br/> "allow_http_ipv4": {<br/> "cidr_block": "0.0.0.0/0",<br/> "description": "Allow HTTP egress traffic to all destinations (IPv4)",<br/> "from_port": 80,<br/> "protocol": "tcp",<br/> "to_port": 80<br/> },<br/> "allow_http_ipv6": {<br/> "description": "Allow HTTP egress traffic to all destinations (IPv6)",<br/> "from_port": 80,<br/> "ipv6_cidr_block": "::/0",<br/> "protocol": "tcp",<br/> "to_port": 80<br/> },<br/> "allow_https_ipv4": {<br/> "cidr_block": "0.0.0.0/0",<br/> "description": "Allow HTTPS egress traffic to all destinations (IPv4)",<br/> "from_port": 443,<br/> "protocol": "tcp",<br/> "to_port": 443<br/> },<br/> "allow_https_ipv6": {<br/> "description": "Allow HTTPS egress traffic to all destinations (IPv6)",<br/> "from_port": 443,<br/> "ipv6_cidr_block": "::/0",<br/> "protocol": "tcp",<br/> "to_port": 443<br/> },<br/> "allow_ssh_ipv4": {<br/> "cidr_block": "0.0.0.0/0",<br/> "description": "Allow SSH egress traffic to all destinations (IPv4)",<br/> "from_port": 22,<br/> "protocol": "tcp",<br/> "to_port": 22<br/> },<br/> "allow_ssh_ipv6": {<br/> "description": "Allow SSH egress traffic to all destinations (IPv6)",<br/> "from_port": 22,<br/> "ipv6_cidr_block": "::/0",<br/> "protocol": "tcp",<br/> "to_port": 22<br/> }<br/>}</pre> | no |
248248
| <a name="input_runner_worker_gitlab_pipeline"></a> [runner\_worker\_gitlab\_pipeline](#input\_runner\_worker\_gitlab\_pipeline) | post\_build\_script = Script to execute in the pipeline just after the build, but before executing after\_script.<br/>pre\_build\_script = Script to execute in the pipeline just before the build.<br/>pre\_clone\_script = Script to execute in the pipeline before cloning the Git repository. this can be used to adjust the Git client configuration first, for example. | <pre>object({<br/> post_build_script = optional(string, "\"\"")<br/> pre_build_script = optional(string, "\"\"")<br/> pre_clone_script = optional(string, "\"\"")<br/> })</pre> | `{}` | no |
249249
| <a name="input_runner_worker_ingress_rules"></a> [runner\_worker\_ingress\_rules](#input\_runner\_worker\_ingress\_rules) | Map of ingress rules for the Runner workers | <pre>map(object({<br/> from_port = optional(number, null)<br/> to_port = optional(number, null)<br/> protocol = string<br/> description = string<br/> cidr_block = optional(string, null)<br/> ipv6_cidr_block = optional(string, null)<br/> prefix_list_id = optional(string, null)<br/> security_group = optional(string, null)<br/> }))</pre> | `{}` | no |
250250
| <a name="input_security_group_prefix"></a> [security\_group\_prefix](#input\_security\_group\_prefix) | Set the name prefix and overwrite the `Name` tag for all security groups. | `string` | `""` | no |

0 commit comments

Comments
 (0)