I want the ability to define a specific value that can be referenced from multiple projects.
(Example: define a date, and have multiple builds refer to that date and use it as the processing date).
When trying to achieve such a function,
I would use AWS’s Parameter Store or Secret Manager,
but does Palantir have such a function?
You could create a shared Python library that exposes the constants you want to import into other builds:
- https://www.palantir.com/docs/foundry/transforms-python/share-python-libraries/#publishing-a-python-library
1 Like
I was hoping there would be a function that would allow me to set it up without using a program, but it doesn’t seem like there is such a function at the moment,
so I decided to use a Python library or something like that.
Thank you for checking.