Reputation: 31
Is the endpoint address of RDS instances unique across whole of AWS infrastructure irrespective of datacenter/VPC?
e.g:
aws.xxxx.yyy.rds.amazonaws.com
Upvotes: 1
Views: 2391
Reputation: 36073
Every unique RDS instance has a unique endpoint, regardless whether the instance is public or private.
The RDS endpoint is comprised of:
The account + region specific hash is constant for all RDS instances in the same region and the same AWS account.
Upvotes: 5
Reputation: 200572
Yes it's unique. It has to be since you can make the database publicly accessible and connect to it directly over the Internet via the endpoint address.
Upvotes: 2