We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 185ef20 commit 2f84984Copy full SHA for 2f84984
modules/runners/main.tf
@@ -59,7 +59,7 @@ resource "aws_launch_template" "runner" {
59
dynamic "block_device_mappings" {
60
for_each = var.block_device_mappings != null ? var.block_device_mappings : []
61
content {
62
- device_name = lookup(block_device_mappings.value, "device_name", "/dev/xvda")
+ device_name = block_device_mappings.value.device_name
63
64
ebs {
65
delete_on_termination = block_device_mappings.value.delete_on_termination
0 commit comments