Akshay Lokur
Akshay Lokur

Reputation: 7516

AWS event to catch RDS IP address change

IP address of RDS instance can change due to various reasons as mentioned at the bottom of this AWS knowledge center page.

I want to get notified or take some action whenever the IP address changes.

Is there a suitable RDS event which can detect this change? (I referred this doc page but couldn't find any.)

Upvotes: 0

Views: 1032

Answers (1)

unemployedTeeth
unemployedTeeth

Reputation: 43

From my understanding, you will need to publish all the rds events to an sns topic which will then trigger a lambda function. The lambda function will take care of the notifications.

Upvotes: 1

Related Questions