Qual é a sintaxe correta para filtrar por tag no descreva-vpcs?
Estou tentando entender uma chamada aws ec2 cli. Estou procurando descrever todos os VPCs e arquivadores em uma tag personalizada (vpcname = myvpc, no entanto, depois de tentar várias combinações, continuo recebendo erros conflitantes sobre o formato e o uso de --filters. Usando como referência [http://docs.aws.amazon.com/cli/latest/reference/ec2/describe-vpcs.html[[1]
aws --profile myProfile --region eu-west-1 ec2 descrevem-vpcs --filters vpcname, myvpc
no entanto, isso retorna
Error parsing parameter '--filters': should be: Key value pairs, where values are separated by commas, and multiple pairs are separated by spaces.
--filters Name=string1,Values=string1,string2 Name=string1,Values=string1,string2
tão tentando
aws --profile myProfile --region eu-west-1 ec2 Descrição-vpcs --filters Nome = vpcname, Valores = myvpc
e retorna
A client error (InvalidParameterValue) occurred when calling the DescribeVpcs operation: The filter 'vpcname' is invalid
então tente algumas outras combinações
aws --profile myProfile --region eu-west-1 ec2 describe-vpcs --filters tag :Name=vpcname,Values=myvpc
Error parsing parameter '--filters': should be: Key value pairs, where values are separated by commas, and multiple pairs are separated by spaces.
--filters Name=string1,Values=string1,string2 Name=string1,Values=string1,string2
Algum conselho sobre como eu formato essa solicitação?