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
When we add custom parameters with the "--params" parameter, they can then be called from any yaml, however, they cannot be used within the "params" section inside the module:
If we execute the following command, we are assigning a custom variable called "Company" which can be used within the yaml:
However, if this custom variable is called within another variable set in the "params" section of the module, the variable is empty, unlike inherited variables such as "Workspace" and "Workspaces", which can be concatenated together.
In the following screenshot, it shows how I call the following variables/params with the "ExecCmdWithOutput" Script.
Param "Company" established from the --param parameter in the command line. Works well.
Param "LegacyParams", which is a concat of different legacy variables in the "params" section established by osmedeus. Works well.
Param "NewParam", which is a new variable within the "params" section calling "Company". Does not work.
In summary, if a new parameter is set from the command line, it can be called from the yaml, but it cannot be used within the "params" section to concatenate values and work with it.
Thanks for helping in advance <3
The text was updated successfully, but these errors were encountered:
The issue:
When we add custom parameters with the "--params" parameter, they can then be called from any yaml, however, they cannot be used within the "params" section inside the module:
If we execute the following command, we are assigning a custom variable called "Company" which can be used within the yaml:
osmedeus scan -m /root/osmedeus-base/workflow/test/validate.yaml -t company.com --params 'Company=COMPANY.DOT.COM'
However, if this custom variable is called within another variable set in the "params" section of the module, the variable is empty, unlike inherited variables such as "Workspace" and "Workspaces", which can be concatenated together.
In the following screenshot, it shows how I call the following variables/params with the "ExecCmdWithOutput" Script.
In summary, if a new parameter is set from the command line, it can be called from the yaml, but it cannot be used within the "params" section to concatenate values and work with it.
Thanks for helping in advance <3
The text was updated successfully, but these errors were encountered: