Skip to content

Latest commit

 

History

History
56 lines (42 loc) · 2.1 KB

File metadata and controls

56 lines (42 loc) · 2.1 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

You can import a databricks_sql_widget resource with ID like the following:

terraform import databricks_sql_widget.this <dashboard-id>/<widget-id>

Related Resources

The following resources are often used in the same context: