Skip to content

Commit 08d5a03

Browse files
authored
fix: Add missing quotes to block_duration_minutes (#1881)
1 parent 640b10d commit 08d5a03

File tree

1 file changed

+1
-1
lines changed
  • modules/self-managed-node-group

1 file changed

+1
-1
lines changed

modules/self-managed-node-group/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ resource "aws_launch_template" "this" {
158158
dynamic "spot_options" {
159159
for_each = lookup(instance_market_options.value, "spot_options", null) != null ? [instance_market_options.value.spot_options] : []
160160
content {
161-
block_duration_minutes = lookup(spot_options.value, block_duration_minutes, null)
161+
block_duration_minutes = lookup(spot_options.value, "block_duration_minutes", null)
162162
instance_interruption_behavior = lookup(spot_options.value, "instance_interruption_behavior", null)
163163
max_price = lookup(spot_options.value, "max_price", null)
164164
spot_instance_type = lookup(spot_options.value, "spot_instance_type", null)

0 commit comments

Comments
 (0)