Skip to content

Commit 4fbc879

Browse files
committed
fix: fmt
1 parent e127dcb commit 4fbc879

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
locals {
22
# This optional suffix is added to the end of resource names.
3-
suffix = length(var.suffix) == 0 ? "" : "-${var.suffix}"
4-
3+
suffix = length(var.suffix) == 0 ? "" : "-${var.suffix}"
4+
55
databricks_metastore_name = var.custom_databricks_metastore_name == null ? "meta-${var.project}-${var.env}-${var.location}${local.suffix}" : var.custom_databricks_metastore_name
6-
6+
77
databricks_metastore_container_name = var.custom_databricks_metastore_container_name == null ? "meta-${var.project}-${var.env}" : var.custom_databricks_metastore_container_name
88
}
99

variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,10 @@ variable "custom_databricks_metastore_name" {
8888
description = "The name to provide for your Databricks Metastore"
8989
default = null
9090
}
91-
91+
9292
variable "custom_databricks_metastore_container_name" {
9393
type = string
9494
description = "The name to provide for your Databricks Metastore"
9595
default = null
9696
}
97-
97+

0 commit comments

Comments
 (0)