Skip to main content

Get the Endpoint for a RDS instnace in powershell

If  you are looking for the endpoint for a RDS instnace and wondered where it had gone. You should find it in the Endpoint property in Get-rdsdbinstance. I found the Get-rdsdbinstance a bit misleading , cause i expected the a expandable property to be {} and found a just text.


Get-RDSDBInstance -Region $region | Where-Object {$_.Engine -eq 'Mysql'|Select-Object -ExpandProperty Endpoint |select Address



Comments

Post a Comment