stackql/stackql-exec
A wrapper for executing a single command, maps all stackql exec args to actions args (supplied using with.)
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| query | stackql query to be executed | no | — |
| query_file_path | stackql query file to be executed | no | — |
| data_file_path | jsonnet or json data file to be passed to query preprocessor | no | — |
| dry_run | set to true to print the query that would be executed without actually executing it (default is false) | no | false |
| vars | comma delimited list of vars to be passed to query preprocessor (supported with jsonnet config blocks or jsonnet data files only) | no | — |
| query_output | output format for queries (ignored is `is_command` is `true`), supported formats include `json` (default), `csv`, `table` and `text` | no | json |
| auth_obj_path | file path to json object of stackql auth, not required if using standard provider authentication environment variables | no | — |
| auth_str | json string of stackql auth, not required if using standard provider authentication environment variables | no | — |
| is_command | Set to true if the stackql execution is a command that does not return data | no | false |
| on_failure | behavior on a failure in query, supported values are `exit` (default) and `continue` | no | exit |
Outputs
| name | description |
|---|---|
| stackql-query-results | results from a stackql query (in the format specified) |
| stackql-command-output | text output from a stackql command (a query that does not return data) |
| stackql-query-error | error from a stackql query |