You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Additionally, tagging spot requests via the CreateFleetCommand in the Lambda function does not work as expected,
212
212
# so we rely on Terraform to manage these tags only when spot is exclusively used without on-demand failover.
213
213
dynamic"tag_specifications" {
214
-
for_each=var.instance_target_capacity_type=="spot"&& var.enable_on_demand_failover_for_errors==null? [1] : [] # Include the block only if the value is "spot" and on_demand_failover_for_errors is not enabled
214
+
for_each=var.instance_target_capacity_type=="spot"&&length(var.enable_on_demand_failover_for_errors)==0? [1] : [] # Include the block only if the value is "spot" and on_demand_failover_for_errors is not enabled
0 commit comments