terraform-provider-databricks icon indicating copy to clipboard operation
terraform-provider-databricks copied to clipboard

[FEATURE] Unity table tag support in databricks_sql_table

Open donatasm opened this issue 10 months ago • 0 comments

Proposal

Similar to existing key value definitions in databricks_sql_table like options or properties proposal is to have tags attribute:

databricks_sql_table {
    name = "test_table"
    ...
    tags = {
        key1 = value1
        key2 = value2
    }
}

Implementation in resource_sql_table.go would additionally execute:

ALTER TABLE 'test_table' SET tags ('key1' = 'value1', 'key2' = 'value2')

donatasm avatar Apr 26 '24 10:04 donatasm