You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Fix] Suppress equal fold diff for DLT pipeline resource (#4196)
## Changes
Fixesdatabricks/cli#1763. During creation the
`catalog` name for a DLT pipeline is normalized to small case causing a
persistent drift.
## Tests
Manually with the following configuration:
```
resource "databricks_pipeline" "this" {
name = "testing caps"
catalog = "MaiN"
library {
notebook {
path = "/a/b/c"
}
}
}
```
Before:
There'd be a persistent drift where terraform would try to convert
"MaiN" -> "main"
After:
No diff detected.
0 commit comments