Manages system tables enablement. System tables are a Databricks-hosted analytical store of your account’s operational data. System tables can be used for historical observability across your account. System tables must be enabled by an account admin.
Enable the system schema access
resource "databricks_system_schema" "this" {
schema = "access"
}
The following arguments are available:
schema
- (Required) Full name of the system schema.In addition to all arguments above, the following attributes are exported:
id
- the ID of system schema in form of metastore_id|schema_name
.state
- The current state of enablement for the system schema.This resource can be imported by the metastore id and schema name
terraform import databricks_system_schema.this <metastore_id>|<schema_name>