Bert Blommers
Bert Blommers
Hi @rank-p, thanks for the repro-case. This should be fixed in #7254, and part of moto >= 4.2.14.dev29. Let us know if you run into any (other) issues!
We now have a proper SFN Parser, as of Moto >= 5.0.4.dev17. It is disabled by default, but enabled with a simple configuration: `@mock_aws(config={"stepfunctions": {"execute_state_machine": True}})` This functionality was taken...
It's been a while, but this should now work as of Moto v5 - Moto no longer relies on the HTTP_HOST header. Please see the release accouncement (with all breaking...
moto >= 4.2.5.dev12 now contains a proxy! It contains a SSL certificate generator, but for SDK's to trust these certificates, the SDK needs to be configured to use the certificate...
Hi @b-guerra, the proxy would have to be run on `0.0.0.0` in order for it to be reachable from inside Docker: ```moto_proxy -H 0.0.0.0```
That sounds like you're connecting to the real AWS, @b-guerra. Moto only times out after 5 minutes. I've created an example test repro to show that it does work. The...
Happy to help @b-guerra! Invoking a Lambda via the API isn't supported yet, and authorizers aren't invoked either. I'm not against the idea of implementing this in Moto though, so...
Considering the lack of response here, and lack of upvotes/+1's, I'm going to assume this is not (or no longer) useful for people, so I'll close this.
From the docs (https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/secretsmanager.html#SecretsManager.Client.create_secret): ``` Do not end your secret name with a hyphen followed by six characters. If you do so, you risk confusion and unexpected results when searching...
Ah, I see. A PR would be very welcome - it sounds like that is indeed the fix! Would be good to have some tests for this as well -...