If I'm using Databricks Asset Bundles, how would I parametrize a DLT pipeline based on a static configuration file.
In pseudo-code, I would have a .py-file:
import dlt
# Something that pulls a pipeline resource (or artifact) and parses from JSON
table_configs = get_config(...)
for name, config in table_configs.items():
@Dlt.table(name=name)
def my_table():
# do something
The context is that I have a description of the data to ingest in a declarative file format and I'd like to use Python to pull those descriptions out of an artifact that I've deployed (and perhaps even built) using Databricks Asset Bundles.