Skip to content

Commit

Permalink
format code
Browse files Browse the repository at this point in the history
  • Loading branch information
kayman-mk committed Nov 27, 2024
1 parent 68445a2 commit 914b8e7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docker_autoscaler.tf
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ resource "aws_launch_template" "this" {
volume_type = var.runner_worker_docker_autoscaler_instance.volume_type
iops = contains(["gp3", "io1", "io2"], var.runner_worker_docker_autoscaler_instance.volume_type) ? var.runner_worker_docker_autoscaler_instance.volume_iops : null
throughput = var.runner_worker_docker_autoscaler_instance.volume_type == "gp3" ? var.runner_worker_docker_autoscaler_instance.volume_throughput : null
encrypted = true
kms_key_id = local.kms_key_arn
encrypted = true
kms_key_id = local.kms_key_arn
}
}

Expand Down
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -388,8 +388,8 @@ resource "aws_launch_template" "fleet_gitlab_runner" {
volume_type = var.runner_worker_docker_machine_instance.volume_type
iops = contains(["gp3", "io1", "io2"], var.runner_worker_docker_machine_instance.volume_type) ? var.runner_worker_docker_machine_instance.volume_iops : null
throughput = var.runner_worker_docker_machine_instance.volume_type == "gp3" ? var.runner_worker_docker_machine_instance.volume_throughput : null
encrypted = true
kms_key_id = local.kms_key_arn
encrypted = true
kms_key_id = local.kms_key_arn
}
}

Expand Down

0 comments on commit 914b8e7

Please sign in to comment.