I'm trying to make a list in two colums: InstanceName and PublicIp.
I run following command:
aws ec2 describe-instances --region eu-central-1 --query "Reservations[*].Instances[*].[PublicIpAddress,Tags[?Key=='Name'].Value]" --output=table
and it gives me a list, but in one column.
I tried to run command:
aws ec2 describe-instances --region eu-central-1 --query "Reservations[*].Instances[*].[{PublicIP:PublicIpAddress},Tags[?Key=='Name'].{Value:Value}]" --output=table
but it gives an error:
list indices must be integers or slices, not dict
Is there a way to do that list?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…