cattle-ops / terraform-aws-gitlab-runner

Terraform module for AWS GitLab runners on ec2 (spot) instances
https://registry.terraform.io/modules/cattle-ops/gitlab-runner/aws
MIT License
587 stars 331 forks source link

volume_iops doesn't work #1179

Closed kr008 closed 1 month ago

kr008 commented 3 months ago

Describe the bug

Setting volume_iops the value is not set in config.toml. In template file runner-docker-machine-config.tftpl there is no corresponding iops parameter.

To Reproduce

Install Plugin version: 7.13.1

Configuration plugin:

runner_worker_docker_machine_instance = { description = "runner-1" private_address_only = false destroy_after_max_builds = 30 idle_count = var.runners_idle_count idle_time = 600 max_growth_rate = 10 monitoring = true private_address_only = true root_size = 40 subnet_ids = [var.subnet_private_c_id] types = var.runner_instance_type volume_type = "io2" volume_iops = 6000 }

runner_worker = { type = "docker+machine" }