Skip to content

Commit

Permalink
[Internal] Add tag for SQL warehouse used in Online Table tests (#3905)
Browse files Browse the repository at this point in the history
## Changes
The TestUcAccOnlineTable test fails because it uses a SQL warehouse that
does not have an owner tag, as required by policy for our internal
accounts. This PR adds this tag.

## Tests
Ran the test locally, and it passes.

- [ ] `make test` run locally
- [ ] relevant change in `docs/` folder
- [ ] covered with integration tests in `internal/acceptance`
- [ ] relevant acceptance tests are passing
- [ ] using Go SDK
  • Loading branch information
mgyucht authored Aug 14, 2024
1 parent 0053470 commit 785bcab
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions internal/acceptance/online_table_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@ resource "databricks_catalog" "sandbox" {
cluster_size = "2X-Small"
max_num_clusters = 1
warehouse_type = "PRO"
tags {
custom_tags {
key = "Owner"
value = "eng-dev-ecosystem-team_at_databricks.com"
}
}
}
resource "databricks_sql_table" "table" {
Expand Down

0 comments on commit 785bcab

Please sign in to comment.