-
Notifications
You must be signed in to change notification settings - Fork 4.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version 1.10.29 breaks EC2 searches with tags (by specifying MaxResults) #1976
Comments
Broken with: aws-cli/1.10.29 Python/2.6.9 Linux/4.4.8-20.46.amzn1.x86_64 botocore/1.4.20 aws ec2 describe-volumes --volume-ids vol-bce02671A client error (InvalidParameterCombination) occurred when calling the DescribeVolumes operation: The parameter volumeSet cannot be used with the parameter maxResults Or trying to mount Ebs volume produces:A client error (InvalidParameterCombination) occurred when calling the DescribeVolumes operation: The parameter volumeSet cannot be used with the parameter maxResults But works with: |
Same problem here aws ec2 describe-instances --filters "Name=tag:Name,Values=SMSMkt-Workers" A client error (InvalidParameterCombination) occurred when calling the DescribeInstances operation: The parameter 'maxResults' cannot be used with tag filters in the parameter 'filterSet'. Remove either the tag filters from 'filterSet' or the 'maxResults' parameter and try again. |
Me too
Produces...
|
me too 😢 $ aws --version
aws-cli/1.10.29 Python/2.7.5 Linux/3.10.0-327.10.1.el7.x86_64 botocore/1.4.20
$ aws ec2 describe-instances --instance-ids "xxxxxxxxxx" --region "ap-northeast-1"
A client error (InvalidParameterCombination) occurred when calling the DescribeInstances operation: The parameter instancesSet cannot be used with the parameter maxResults
$ echo $?
255 |
me too.
|
Change that's causing this issue has been reverted: #1977 |
can confirm this has broken using filters in describe-instances
|
We've just released v1.10.30 of the CLI which reverts the change that caused this issue. Please upgrade to 1.10.30. Going to go ahead and close out this issue. Let us know if anyone's still seeing issues on v1.10.30. |
I'm seeing this error using the get_only_instances() function with boto. |
The following works in version 1.10.28:
It does not work in 1.10.29. Instead, this result is returned:
The text was updated successfully, but these errors were encountered: