We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I updated the aws client to 1.8.0. Now, the script for creating an instance does not work any more.
aws --profile default --region us-west-1 ec2 describe-subnets --filters 'Name=subnet-id,Values=Private A' Name=vpc-id,Values=vpc-MYVPC --query 'Subnets[*].SubnetId' --output=text
The error message is: Error parsing parameter '--filters': Expected: ',', received: 'A' for input: Name=subnet-id,Values=Private A ^
So there is a space in the subnet-id and I cannot filter it any more. The command worked with 1.7.x
The text was updated successfully, but these errors were encountered:
Thanks for reporting. We'll get this fixed.
Sorry, something went wrong.
Just want to mention that while we will fix the current behavior, the workaround for now is to double quote the value with spaces:
--filters 'Name=subnet-id,Values="Private A"' Name=vpc-id,Values=vpc-MYVPC
No branches or pull requests
I updated the aws client to 1.8.0. Now, the script for creating an instance does not work any more.
aws --profile default --region us-west-1 ec2 describe-subnets --filters 'Name=subnet-id,Values=Private A' Name=vpc-id,Values=vpc-MYVPC --query 'Subnets[*].SubnetId' --output=text
The error message is:
Error parsing parameter '--filters': Expected: ',', received: 'A' for input:
Name=subnet-id,Values=Private A
^
So there is a space in the subnet-id and I cannot filter it any more.
The command worked with 1.7.x
The text was updated successfully, but these errors were encountered: