https://kedro.org/ logo
#beginners-need-help
Title
# beginners-need-help
d

datajoely

03/07/2022, 9:32 AM
Using environment vars is a common way to get round this sort of thing. Set the var outside of Kedro and then tweak your
register_config_loader
method in
hooks.py
Copy code
python
globals_pattern="*globals.yml",
        globals_dict={
            k: v for k, v in os.environ 
            if k.startswith("date")
        },
    )