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
massimo@LT00181468:~/data-factory$ xl blueprint --use-defaults --answers answers.yaml
? Choose a blueprint: my-blueprint
Error while creating Blueprint: yaml: unmarshal errors:
line 17: cannot unmarshal !!seq into string
I noticed that a complex string is supported but is it possible to have a complex data type supported?
Types
The types that can be used for inputs are:
Input: Used for simple text or number inputs.
SecretInput: Used for simple secret or password inputs. These are by default saved in secrets.xlvals files so that they won’t be checked in the GIT repo and will not be replaced with actual values in the template files.
Select: Used for select inputs where user can choose from given options.
Confirm: Used for boolean inputs.
Editor: Used for multiline or complex text input.
SecretEditor: Used for multiline or complex secret inputs. These are by default saved in secrets.xlvals files so that they won’t be checked in the GIT repo and will not be replaced with actual values in the template files.
File: Used for fetching the content of a given file path.
SecretFile: Used for fetching the content of a given file path and treat it as secret. These are by default saved in secrets.xlvals files so that they won’t be checked in the GIT repo and will not be replaced with actual values in the template files.
The text was updated successfully, but these errors were encountered:
I noticed that for the answers.yaml file I was not able to pass a complex data type.
I noticed that a complex string is supported but is it possible to have a complex data type supported?
Types
The types that can be used for inputs are:
Input
: Used for simple text or number inputs.SecretInput
: Used for simple secret or password inputs. These are by default saved in secrets.xlvals files so that they won’t be checked in the GIT repo and will not be replaced with actual values in the template files.Select: Used for select inputs where user can choose from given options.
Confirm
: Used for boolean inputs.Editor
: Used for multiline or complex text input.SecretEditor
: Used for multiline or complex secret inputs. These are by default saved in secrets.xlvals files so that they won’t be checked in the GIT repo and will not be replaced with actual values in the template files.File
: Used for fetching the content of a given file path.SecretFile
: Used for fetching the content of a given file path and treat it as secret. These are by default saved in secrets.xlvals files so that they won’t be checked in the GIT repo and will not be replaced with actual values in the template files.The text was updated successfully, but these errors were encountered: