Hi everyone
we rotate our database passwords on a schedule and would like to load the updated secret on the fly without requiring an endpoint restart. I was wondering what the suggest approach was to achieve this.
I found one way to do it is by trying to establish a connection to the database as part of the connection builder delegate. If the connection fails, reload the secret and try again. This seems expensive and not very efficient and I was wondering if there was a better way.
persistence.ConnectionBuilder(
() =>
{
var connectionString = connectionStringDelegate();
var connection = new MySqlConnection(connectionString);
if (connection.CanConnect())
{
return connection;
}
// If the connection failed reload the connection string from AWS Secret
// and try again.
configuration.ReloadConfigurationProvider<AwsSecretsManagerConfigurationProvider>();
connectionString = connectionStringDelegate();
connection = new MySqlConnection(connectionString);
return connection;
});
Serge