> You had to patch your containers and your instances/servers, but you didn’t have to patch Lambda functions.
This was right after talking about Fargate. Let's compare what you do and don't have to patch in Fargate / Lambda:
Kernel / host OS: Lambda and Fargate patch that for you without any work. This is the more important patch.
Container bins/libraries: some programs, like Chrome, which had JIT, could be exploited to read memory of that same process. In the case of lambda and fargate, you only needed to patch containers/zips that contained such programs.
If you were using something like 'serverless-chrome'[0] in lambda, you would have to update your zip file to get Chrome's workaround for meltdown. If you had a fargate container with headless chrome, same deal. It's practically identical in the cited case of meltdown.
There are many cases (like glibc or openssl vulnerabilities) where containers need to be patched, but lambda can patch it for you ... but in the case of kernel exploits, fargate and lambda can patch equally well.