Skip to content
This repository was archived by the owner on Jan 16, 2025. It is now read-only.

Commit 2f84984

Browse files
committed
review comments
1 parent 185ef20 commit 2f84984

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: modules/runners/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ resource "aws_launch_template" "runner" {
5959
dynamic "block_device_mappings" {
6060
for_each = var.block_device_mappings != null ? var.block_device_mappings : []
6161
content {
62-
device_name = lookup(block_device_mappings.value, "device_name", "/dev/xvda")
62+
device_name = block_device_mappings.value.device_name
6363

6464
ebs {
6565
delete_on_termination = block_device_mappings.value.delete_on_termination

0 commit comments

Comments
 (0)