moto icon indicating copy to clipboard operation
moto copied to clipboard

A library that allows you to easily mock out tests based on AWS infrastructure.

Results 248 moto issues
Sort by recently updated
recently updated
newest added

Eg, `/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs` is not available as a ssm parameter, nor can it be added (understandable) like a regular parameters due to `AccessDeniedException`. See eg https://aws.amazon.com/blogs/compute/query-for-the-latest-amazon-linux-ami-ids-using-aws-systems-manager-parameter-store/ Having these parameters set, or...

enhancement

When using moto as backend ``` aws --endpoint=http://127.0.0.1:5000 autoscaling create-auto-scaling-group --auto-scaling-group-name group2 \ --min-size 1 --max-size 10 --availability-zones us-east-1a \ --mixed-instances-policy 'LaunchTemplate={LaunchTemplateSpecification={LaunchTemplateName=tmpl2},Overrides={InstanceType=t3.micro}}' ``` Gives: ``` An error occurred (ValidationError) when...

enhancement

``` AWS_ACCESS_KEY_ID=1 AWS_SECRET_ACCESS_KEY=1 AWS_DEFAULT_REGION=us-east-1 aws --endpoint=http://127.0.0.1:5000 autoscaling create-auto-scaling-group --auto-scaling-group-name group1 --min-size 1 --max-size 10 --launch-template 'LaunchTemplateName=tmpl' --availability-zones us-east-1a ``` results in ``` Unable to parse response (syntax error: line 1,...

bug

## Reporting Bugs fresh install of moto, run via `moto_server` terraform json fragments (generated) ``` "aws_autoscaling_group": { "ec2_auto_16C147B8": { "//": { "metadata": { "path": "proj1/ec2/auto", "uniqueId": "ec2_auto_16C147B8" } }, "launch_template":...

bug

As shown here, the only operation implemented is `exists`: https://github.com/spulec/moto/blob/79af23aeb70fcbd37d56c73e5b026fff71688da0/moto/sns/models.py#L312-L316 Moto version: motoserver/moto:3.1.16 Example code - message not received if using filtering. Remove filtering to receive the message. ``` import...

enhancement

It would come in handy to be able to record changes to moto state and later restore the exact same state.

enhancement

Issue similar to #1129 When putting items with empty strings using `batch_writer` `ClientError` is not raised. Using `moto==3.1.16` Failing test case: ```python import pytest import boto3 import botocore from moto...

enhancement

## boto3 function url capabilities are unsupported AWS added function url as a new feature called function url. I am trying to test some features around this. I'm getting a...

enhancement

I am creating a firehose delivery stream, with either S3 or Redshift delivery options and trying to set the S3 backup option. The creation request (converted to Json from the...

enhancement

Hi, I would like to ask about `email` being present in Cognito JWT access token claims. According to [congito documentation ](https://docs.aws.amazon.com/cognito/latest/developerguide/amazon-cognito-user-pools-using-the-access-token.html) it should include `username` and not `email`. I don't...

bug