We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 640b10d commit 08d5a03Copy full SHA for 08d5a03
modules/self-managed-node-group/main.tf
@@ -158,7 +158,7 @@ resource "aws_launch_template" "this" {
158
dynamic "spot_options" {
159
for_each = lookup(instance_market_options.value, "spot_options", null) != null ? [instance_market_options.value.spot_options] : []
160
content {
161
- block_duration_minutes = lookup(spot_options.value, block_duration_minutes, null)
+ block_duration_minutes = lookup(spot_options.value, "block_duration_minutes", null)
162
instance_interruption_behavior = lookup(spot_options.value, "instance_interruption_behavior", null)
163
max_price = lookup(spot_options.value, "max_price", null)
164
spot_instance_type = lookup(spot_options.value, "spot_instance_type", null)
0 commit comments