Skip to content

Instantly share code, notes, and snippets.

View ferschubert's full-sized avatar
👨‍👩‍👧

Fernando S. ferschubert

👨‍👩‍👧
View GitHub Profile
@ferschubert
ferschubert / gist:b196dd7872004a91c4587ad7e26f8427
Last active February 7, 2018 18:19
AWS PowerShell Helpers
# Initially created for my own selfish memory. Free for all to use. I know it is not beautiful, but it works :)
# Basic RDS info
Get-RDSDBInstance | Select DBInstanceIdentifier, DBInstanceClass, Engine | Format-Table
# Advanced info with IP script
# The script assumes your environment is properly configured - access keys and region
Import-Module "C:\Program Files (x86)\AWS Tools\PowerShell\AWSPowerShell\AWSPowerShell.psd1"# Get instances data
$rdsInstances = @()