Hacker News new | ask | show | jobs
by mhitza 837 days ago
There can be resources created implicitly, even when using IaC tools. One example, create a lambda, without an explicit log group, one will be automatically created for you outside of the tracked state.
2 comments

So the lambda function will survive, but billing will still go to zero when the lambda's last execution finishes, right?
The function would be destroyed (guessing running instances would finish their handlers and then no longer be accessible) but the log group it created would still be present, holding logs from the dead function.
That sounds stupid, thanks. Guess I'll be careful when I set up lambdas.
Is this true? I know it's not true when using terraform for things like ECS. I suppose I can just test this myself.