Skip to content

Instantly share code, notes, and snippets.

@gcanales75
Created August 19, 2017 20:40
Show Gist options
  • Select an option

  • Save gcanales75/6645ad6d16833f5fc9897e2cbbf622ff to your computer and use it in GitHub Desktop.

Select an option

Save gcanales75/6645ad6d16833f5fc9897e2cbbf622ff to your computer and use it in GitHub Desktop.
Crea una lista donde relaciona InstanceId con su Tag "Name"
((Get-EC2Instance).instances) | Select InstanceId, @{Name="tagName";Expression={($_.Tags | Where {$_.Key -eq "Name"}).Value}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment