This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 = @() |