Skip to content

Commit

Permalink
Create sanitech_data_directory.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
KOSASIH authored Apr 19, 2024
1 parent ad5b7dc commit 7f31d04
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions func/sanitech_data_directory.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
provider "databricks" {
alias = "example"
host = "https://example.databricks.com"
token = "example_token"
}

resource "databricks_table_catalog" "example" {
provider = databricks.example
name = "example_catalog"
description = "Example catalog in Databricks"

tables {
name = "example_table"
description = "Example table in Databricks"
database_name = "example_database"
}
}

0 comments on commit 7f31d04

Please sign in to comment.