Alec Jacobs
Alec Jacobs
FWIW, having access to the server is also valuable for those who might want to use something like https://github.com/godaddy/terminus to handle more graceful shutdown. I do see that there are...
If we're concerned about race conditions where the server is created before configuration (and provided to `configure`), would we be open to a dedicated `configureServer` callback? Its not idea, I...
I'll take a stab at a PR for this
Thanks for reporting! This little tool could definitely use some love and needs an overhaul - this issue is probably explained by the fact that its using a fairly old...
+1, would like for this to be kept alive in some capacity. @knksmith57 and I will need to discuss paths forward
Hey @atran-brex @jrusso1020 - we now have https://github.com/segmentio/segment-backstage-plugins which would make a great place for this plugin to live! If y'all would like the contribution credit, we'd be happy to...
This is likely failing because [we don't support complex nested yaml files for import](https://github.com/segmentio/chamber/blob/ac412f5e35c63ceeae299a5576ae168acb11ad65/cmd/import.go#L49-L54). Currently, a flat file structure is expected like so ```yaml ch_secret: secret other_secret: other_secret ```
I'd like to understand what problem you're trying to solve for? If you want raw JSON as a value, you could provide a JSON string as the value as a...
Just trying to fully understand what you're looking for - you'd like `chamber import` to support nested structures and manage serializing it out into a JSON string to write to...
Gotcha - I can see chamber handling attempting to JSON serialize any value from import, but I'm not sure about parsing arbitrary objects/values on export. It's an interesting use case,...