Skip to content

Latest commit

 

History

History
52 lines (39 loc) · 1.99 KB

File metadata and controls

52 lines (39 loc) · 1.99 KB
subcategory
Databricks SQL

databricks_sql_widget Resource

To manage SQLA resources you must have databricks_sql_access on your databricks_group or databricks_user.

Note: documentation for this resource is a work in progress.

A widget is always tied to a dashboard. Every dashboard may have one or more widgets.

Example Usage

resource "databricks_sql_widget" "d1w1" {
  dashboard_id = databricks_sql_dashboard.d1.id
  text = "Hello! I'm a **text widget**!"

  position {
    size_x = 3
    size_y = 4
    pos_x = 0
    pos_y = 0
  }
}

resource "databricks_sql_widget" "d1w2" {
  dashboard_id = databricks_sql_dashboard.d1.id
  visualization_id = databricks_sql_visualization.q1v1.id

  position {
    size_x = 3
    size_y = 4
    pos_x = 3
    pos_y = 0
  }
}

Import

-> Note Importing this resource is not currently supported.

Related Resources

The following resources are often used in the same context: