Skip to content

Commit 86a065a

Browse files
authored
Merge pull request #49 from tomarv2/develop
fixing typo
2 parents 7cff48b + 6b0669e commit 86a065a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

cluster.tf

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ resource "databricks_cluster" "cluster" {
3535
zone_id = lookup(aws_attributes.value, "zone_id", null)
3636
first_on_demand = lookup(aws_attributes.value, "first_on_demand", null)
3737
availability = lookup(aws_attributes.value, "availability", null)
38-
spot_bid_price_percent = lookup(aws_attributes.value, "spot_bid_price_percent ", null)
39-
ebs_volume_count = lookup(aws_attributes.value, "ebs_volume_count ", null)
40-
ebs_volume_size = lookup(aws_attributes.value, "ebs_volume_size ", null)
38+
spot_bid_price_percent = lookup(aws_attributes.value, "spot_bid_price_percent", null)
39+
ebs_volume_count = lookup(aws_attributes.value, "ebs_volume_count", null)
40+
ebs_volume_size = lookup(aws_attributes.value, "ebs_volume_size", null)
4141
}
4242
}
4343

@@ -63,9 +63,9 @@ resource "databricks_cluster" "single_node_cluster" {
6363
zone_id = lookup(aws_attributes.value, "zone_id", null)
6464
first_on_demand = lookup(aws_attributes.value, "first_on_demand", null)
6565
availability = lookup(aws_attributes.value, "availability", null)
66-
spot_bid_price_percent = lookup(aws_attributes.value, "spot_bid_price_percent ", null)
67-
ebs_volume_count = lookup(aws_attributes.value, "ebs_volume_count ", null)
68-
ebs_volume_size = lookup(aws_attributes.value, "ebs_volume_size ", null)
66+
spot_bid_price_percent = lookup(aws_attributes.value, "spot_bid_price_percent", null)
67+
ebs_volume_count = lookup(aws_attributes.value, "ebs_volume_count", null)
68+
ebs_volume_size = lookup(aws_attributes.value, "ebs_volume_size", null)
6969
}
7070
}
7171

0 commit comments

Comments
 (0)