Ralph Caraveo
                                            Ralph Caraveo
                                        
                                    Hi @theRemix, Thanks for the good questions here: I do plan to continue development into something that is stable...in fact the tool is almost there...I've just recently started using it...
@mrbluecoat and @theRemix - as of now, the project is on hiatus until enough interest is there. I still think this concept is a good idea but just don’t have...
It’s a possibility, do you think there is an advantage to supporting more than one type of configuration file? Out of the box just by supporting HCL it will support...
@vendion - sorry for the way, way late response...but yes this is something that needs to be addressed and I haven't had a chance for the past 5-6 months to...
@chewxy - do you think you'll be able to contribute the AWS provider? If so, i'll probably start looking at implementing the Google provider.
@chewxy - glad to hear that...yes I am aware of cloud systems due to things like noisy neighbor and noise on top of the virtualization layer. I don't consider the...
Also, looking forward to @jokebroker's contribution! :)
@virtuallynathan - yes i need to update the docs I think both AWS and Google are now on per-second billing. Both are nice in terms of saving 💰 👍
Ok thanks for confirming @pquerna. Additionally, the same thing occurs for json arrays, i updated the example.
Confirmed the lexer is correct: ``` go ffl = NewFFLexer([]byte(`{"hello": 1,}`)) toks = scanAll(ffl) assertTokensEqual(t, []FFTok{ FFTok_left_bracket, FFTok_string, FFTok_colon, FFTok_integer, FFTok_comma, FFTok_right_bracket, FFTok_eof, }, toks) ``` So the bug is...