Skip to content

Commit

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

resource "databricks_table_metadata" "example" {
provider = databricks.example
table_name = "example_table"
description = "Example table in Databricks"
table_type = "manual"

columns {
name = "id"
description = "Example id column"
data_type = "integer"
is_nullable = false
}

columns {
name = "name"
description = "Example name column"
data_type = "string"
is_nullable = false
}
}

0 comments on commit ad5b7dc

Please sign in to comment.