Carlos Domingues
Carlos Domingues
Just adding my 2 cents. Lots of backoffice-like and data applications could not care less about latency. Actually being able to scale to zero would be amazing for many use...
@imranismail you can configure network interfaces to be deleted by using the `delete_on_termination` attribute in the `network_interface` block, e.g.: ``` network_interface { device_index = 0 description = "." delete_on_termination =...
It's absolutely frustrating that resources that have existed for ages aren't properly supported by CF.
Was bitten by this issue today when trying to use aws-cdk in a [VSCode Remote Container](https://code.visualstudio.com/docs/remote/containers) environment in Windows 10. Bundling assets on Docker does not work on Docker in...
Using containers for local development is becoming increasingly common and docker in docker is still a hassle (security and performance issues). It would be great to simply mount my code...
I was bitten by this using Windows 10 + WSL2 + awscliv2 and @mklinke suggestion worked for me. Just make sure you're removing `~/.docker/config.json` inside the WSL2 VM, not in...
Could this issue be reopened? I'd like to give it a try.
Looks like a `wkhtmltopdf` issue: https://github.com/wkhtmltopdf/wkhtmltopdf/issues/2913 Unfortunately, `wkhtmltopdf` is not mantained anymore. That said, I used the most recent workaround suggested in the issue and it worked for me: ```...
Our company has been using `.devcontainer` / `.devcontainer.json` for a few years so we can have reproducible dev environments. If we could use those with Gitpod, migration would be trivial....