Skip to content

Commit

Permalink
fix: Add missing quotes to block_duration_minutes (#1881)
Browse files Browse the repository at this point in the history
  • Loading branch information
agconti authored Feb 15, 2022
1 parent e1a71e8 commit 8bc6488
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/self-managed-node-group/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ resource "aws_launch_template" "this" {
dynamic "spot_options" {
for_each = lookup(instance_market_options.value, "spot_options", null) != null ? [instance_market_options.value.spot_options] : []
content {
block_duration_minutes = lookup(spot_options.value, block_duration_minutes, null)
block_duration_minutes = lookup(spot_options.value, "block_duration_minutes", null)
instance_interruption_behavior = lookup(spot_options.value, "instance_interruption_behavior", null)
max_price = lookup(spot_options.value, "max_price", null)
spot_instance_type = lookup(spot_options.value, "spot_instance_type", null)
Expand Down

0 comments on commit 8bc6488

Please sign in to comment.