Yevgeniy Brikman
Yevgeniy Brikman
In a `.scala.stream` template, all markup will be wrapped in an `HtmlStream`. For example, the following template: ``` html @main(...) { Some markup } ``` Gets roughly compiled to: ```...
A `.scala.stream` tempate will return an `HtmlStream` object, which is a wrapper for an `Enumerator[Html]`. There is no way to include those inside of a `.scala.html` template, since those return...
They are sub projects so that a) their dependencies are packaged separately so that including the ping-play jar in an app doesn't pull in a bunch of sample code and...
How are you looking at the HTML code? If it's through a browser, I would think the browser is decompressing it for you.
Ah, gotcha, thanks for following up. I didn't realize the GzipFilter skipped chunked responses. It seems like a reasonable feature request and I'd be happy to merge in a PR...
That's a fair point. What would be your suggested fix? FWIW, we very rarely use `apply-all` for anything other than the initial deployment of an entire environment. After that, once...
> And of course disabling auto-approve when terragrunt-non-interactive is not set. It sounds like in the description of the PR, the goal was not to disable auto-approve, but to change...
> Nope. Currently you get one interactive question asked: > > Are you sure you want to run 'terragrunt apply' in each folder of the stack described above? (y/n) >...
> Hi all, > > When running a terragrunt apply, what is the difference between terragrunt apply -auto-approve vs. terragrunt apply --terragrunt-non-interactive? `-auto-approve` skips interactive prompts from Terraform, such as...
This may be a limitation of terraform. I think if you run `terraform apply -var foo=null`, it parses `null` as a string.