-
Book Overview & Buying
-
Table Of Contents
AWS for System Administrators - Second Edition
By :
In the previous chapters, we saw how to create scalable compute infrastructure using EC2 and managed databases with RDS. However, for an EC2 instance to be able to connect to a database, we’ll usually need a username/password combination. This is also often the case when we want to connect to third-party services that are available via an API. In short, we need a way to create and retrieve these secrets without the need to manually add them to each of our systems.
Setting and retrieving a secret securely is already a very helpful feature, but what about password rotations? When dealing with credentials such as the connection details for a database instance, it is advisable to change or rotate these credentials on a regular basis. Let’s say we want to rotate the password of all our database systems every seven days. This would mean that every seven days, we would have to remember to manually set a...