From cdaf71d48900e52e064d91c38e11d90a99231519 Mon Sep 17 00:00:00 2001 From: tomarv2 <11890959+tomarv2@users.noreply.github.com> Date: Thu, 4 Aug 2022 13:09:58 -0700 Subject: [PATCH] Update cluster.tf --- cluster.tf | 2 -- 1 file changed, 2 deletions(-) diff --git a/cluster.tf b/cluster.tf index 6da3736..ff6e7cd 100644 --- a/cluster.tf +++ b/cluster.tf @@ -49,9 +49,7 @@ resource "databricks_cluster" "cluster" { dynamic "gcp_attributes" { for_each = var.gcp_attributes == null ? [] : [var.gcp_attributes] content { - first_on_demand = lookup(gcp_attributes.value, "first_on_demand", null) availability = lookup(gcp_attributes.value, "availability", null) - spot_bid_max_price = lookup(gcp_attributes.value, "spot_bid_max_price", null) } }