Amazon AWS - How can I change the Private IP of a Network Interface linked to RDS

amazon-rds, amazon-web-services

Solution

Unlike EC2 instances, allocating a private ip of an RDS instance is not possible, this has been answered in this question.

The recommended method to access an instance is through its endpoint:

Please note that, we strongly recommend you use the DNS Name to connect to your DB Instance as the underlying IP address can change (e.g., during a failover).

Problem

I created an RDS DB Instance linked to a VPC. This created a Network Interface and automatically assigned an internal IP: 10.0.10.65 I want to change this IP address to 10.0.10.15 How can I achieve this?

Original source

Related problems