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
And there is no way to pass params at deployment time poetry run brickflow projects deploy -e local
Cloud Information
AWS
Azure
GCP
Other
Describe the solution you'd like
User will pass the params (max 10) at deployment time poetry run brickflow projects deploy -e local -p key1=value1 -p key2=value2
These params will be available as string in task parameters as brickflow_runtime_params.
For above example, brickflow_runtime_params='{'key1': 'value1', 'key2': 'value2'}'
Describe alternatives you've considered
User can get it working using ENVIRONMENT variable, not very ideal.
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered:
Disccussed with @pariksheet and @stikkireddy - We will be going with BRICKFLOW_PROJECT_PARAMS and use cli to pass the params. The parameters would be available through ctx and a helper function.
Currently user can specify custom params as hardcoded value
And there is no way to pass params at deployment time
poetry run brickflow projects deploy -e local
Cloud Information
Describe the solution you'd like
User will pass the params (max 10) at deployment time
poetry run brickflow projects deploy -e local -p key1=value1 -p key2=value2
These params will be available as string in task parameters as brickflow_runtime_params.
For above example, brickflow_runtime_params='{'key1': 'value1', 'key2': 'value2'}'
Describe alternatives you've considered
User can get it working using ENVIRONMENT variable, not very ideal.
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: