We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The syntax for an array of inputs to a for_each task in DABs is a string formatted to be escaped into a json array rather than a native yaml array
for_each
This is just a syntax challenge, so I'll just focus on the components that make this annoying for our use case
resources: jobs: tasks: - task_key: "many_inputs_task" for_each_task: inputs: "[\"input_1\",\"input_2\",\"input_n\"]"
N/A
It would be nice to use yaml arrays to supply multiple inputs:
resources: jobs: tasks: - task_key: "many_inputs_task" for_each_task: inputs: - "input_1" - "input_2" - "input_n"
DABs doesn't accept that syntax or a few other variations we tried
No
NA
The text was updated successfully, but these errors were encountered:
There is a slightly different way to do it that is cleaner. @ianepreston
Here is how I put inputs:
inputs: '[ { "input1":"76", "input1.1":"value" }, { "input2":"apple", "input2.2":"valu123" } ]'
Sorry, something went wrong.
No branches or pull requests
Describe the issue
The syntax for an array of inputs to a
for_each
task in DABs is a string formatted to be escaped into a json array rather than a native yaml arrayConfiguration
This is just a syntax challenge, so I'll just focus on the components that make this annoying for our use case
Steps to reproduce the behavior
N/A
Expected Behavior
It would be nice to use yaml arrays to supply multiple inputs:
Actual Behavior
DABs doesn't accept that syntax or a few other variations we tried
Is this a regression?
No
Debug Logs
NA
The text was updated successfully, but these errors were encountered: