Right now when passing pipeline parameter type as env_var_name getting below error:
ERROR IN CONFIG FILE:
[#/parameters/parameter_name/type] only 1 subschema matches out of 2
- [#/parameters/parameter_name/type] Input not a valid enum value
| enum:
| - boolean
So this is creating an issue when we are passing any pipeline parameter to orbs which except env_var_name as input.
For example, if we create a pipeline parameter as AWS_REGION_ENV_KEY & set its default value as "" (empty string), then
- vscode circle extension will show errors like
Parameter aws-region for aws-cli/setup must be a env_var_name
- I have to change the default value to something like
AWS_REGIONto make it work.
Is there any reason for not supporting env_var_name as a type for pipeline parameters? Or is this in WIP?