From 19dd778b1fa670afe3bb57021acf8f61dbfd9194 Mon Sep 17 00:00:00 2001 From: Matthias Kay Date: Mon, 21 Oct 2024 14:38:34 +0200 Subject: [PATCH] docs: underline that `volume_iops` works only if `runner_worker_docker_machine_fleet.enabled = true` (#1198) ## Description The `runner_worker_docker_machine_instance.volume_iops` does not work for the docker+machine driver, but works for the fleeting mode which can be enabled via `runner_worker_docker_machine_fleet.enabled = true`. We amend the comment to make that clear. Closes #1179 --- variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/variables.tf b/variables.tf index ddaaf8c9..0208b565 100644 --- a/variables.tf +++ b/variables.tf @@ -823,7 +823,7 @@ variable "runner_worker_docker_machine_instance" { types = The type of instance to use for the Runner Worker. In case of fleet mode, multiple instance types are supported. volume_type = The type of volume to use for the Runner Worker. `gp2`, `gp3`, `io1` or `io2` are supported. volume_throughput = Throughput in MB/s for the volume. Only supported when using `gp3` as `volume_type`. - volume_iops = Guaranteed IOPS for the volume. Only supported when using `gp3`, `io1` or `io2` as `volume_type`. + volume_iops = Guaranteed IOPS for the volume. Only supported when using `gp3`, `io1` or `io2` as `volume_type`. Works for fleeting only. See `runner_worker_docker_machine_fleet`. EOT type = object({ destroy_after_max_builds = optional(number, 0)