Issue
I have an application setup to retrieve all secrets from a certain vault using the property-sources setup. When spring tried to read the secrets it also read secrets that are marked "pending deletion" which causes an error and crashes my spring application. If there are already solutions out there I am happy to hear.
Solution
I would expect that it should only retrie secrets that have LifeCycleState "ACTIVE". Theoratically adding the lifecycState line into the request builder should resolve this isue.
com.oracle.bmc.vault.requests.ListSecretsRequest:153
ListSecretsRequest request = ListSecretsRequest.builder()
                    .vaultId(vaultId)
                    .compartmentId(compartmentId)
                    .lifecycleState(LifecycleState.Active)
                    .page(page)
                    .build();
Properties
