We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cd439c commit e127dcbCopy full SHA for e127dcb
main.tf
@@ -1,7 +1,10 @@
1
locals {
2
# This optional suffix is added to the end of resource names.
3
suffix = length(var.suffix) == 0 ? "" : "-${var.suffix}"
4
+
5
databricks_metastore_name = var.custom_databricks_metastore_name == null ? "meta-${var.project}-${var.env}-${var.location}${local.suffix}" : var.custom_databricks_metastore_name
6
7
+ databricks_metastore_container_name = var.custom_databricks_metastore_container_name == null ? "meta-${var.project}-${var.env}" : var.custom_databricks_metastore_container_name
8
}
9
10
resource "azurerm_storage_data_lake_gen2_filesystem" "this" {
0 commit comments