Has anyone tried the static deploy
feature that comes with igluctl ? I’m having a problem getting it working for me. I copied a version of the configuration from here https://docs.snowplowanalytics.com/docs/pipeline-components-and-applications/iglu/igluctl-0-6-0/#static-deploy
However, after I tried it locally with igluctl 0.7.1, it’s giving me an error:
Configuration is invalid: InvalidData
which does not indicate which part of the configuration contain invalid data. Here is what I used:
{
"$schema": "iglu:com.snowplowanalytics.iglu/igluctl_config/jsonschema/1-0-0",
"description": "A config file"
"data": {
"input": "file://tmp/schemas",
"lint": {
"skipWarnings": true,
"includedChecks": ["rootObject", "unknownFormats"]
},
"generate": {
"output": "file://tmp/ddl_output",
"withJsonPaths": true,
"dbSchema": "randomschema",
"varcharSize": 4096,
"noHeader": true,
"force": true,
"owner": "a_new_owner"
},
"actions": [
{
"action": "push",
"isPublic": false,
"registry": "http://my-snowplow-mini-instance-ec2.com/iglu-server",
"apikey": "c88901aa-c60e-4141-8bb4-3bfacfe61007"
}
]
}
}
What could be wrong with this? Can anyone help?