Enable use of dynamic database credentials beyond max-tty
The problem: Currently there is no way to use dynamic credentials using spring-cloud-vault-config-databases beyond the max lease time. The recommendation online seems to be to just let your container become unhealthy and let a new one replace it.
Proposed solution: VaultConfigDatabaseBootstrapConfiguration::DatabaseSecretBackendMetadataFactory::forDatabase can return a LeasingSecretBackendMetadata with lease mode set to ROTATE instead of a plain SecretBackendMetadata.
This would ensure that the lease gets rotated at expiry and the relevant database properties get updated. The responsibility of how to use the updated properties to update the connection pool can be left to the user.
Introducing ROTATE creates the expectation of credential propagation into the actual components as Spring Cloud Vault is built on top of Spring Boot. Right now, configuration properties objects aren't refreshed from Spring Boot and there is no propagation into Mongo Client, a connection pool, etc.
Would it be sufficient to document this limitation explicitly and give examples for how to setup the propagation for common use cases?