Mark Meyer
Mark Meyer
AWS recently announced [Code Signing, a trust and integrity control for AWS Lambda ](https://aws.amazon.com/about-aws/whats-new/2020/11/announcing-code-signing-a-trust-and-integrity-control-for-aws-lambda/), with an accompanying [blog post](https://aws.amazon.com/blogs/aws/new-code-signing-a-trust-and-integrity-control-for-aws-lambda/) describing it in detail. This is also now [supported in Terraform](https://www.hashicorp.com/blog/announcing-support-for-aws-lambda-code-signing-in-the-terraform-aws-provider).
One note regarding brute force attempts at logging in. Cognito appears to rate limit failed logins: https://docs.aws.amazon.com/cognito/latest/developerguide/amazon-cognito-user-pools-authentication-flow.html > We allow five failed sign-in attempts. After that we start temporary lockouts...
A possible workflow might look like: 1. Setup new pool with no users (and case-insensitive) 2. User tries to login, but is not in the new pool yet 3. The...
I was also bumping into this warning. In my case this results in the message: `` Changing it to: ``` ``` makes it go away.
FWIW, I just came here searching for this. I assumed this would support the more or less the same assertions that unittest.mock supports and properties like `call_count`. I have no...
Thank you @kkroening. I ended up here because I was trying to understand that [JsonConfigSettingsSource](https://docs.pydantic.dev/latest/usage/pydantic_settings/#adding-sources) example as I migrated to V2. It made no sense to me, so I just...
I am also curious about this. I'm having trouble using it with router.
This is an interesting case where the megaphone-based fuzzy matching fails. The megaphones of `PEORIAIL` `PROLEIA` are a match. ``` postgres=# select metaphone('PEORIAIL', 10); metaphone ----------- PRL (1 row) postgres=#...