You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My understanding is that Citrus Framework uses Spring, but not Spring Boot. Is that correct?
I want to use spring-cloud-azure-starter-keyvault-secrets to securely store and retrieve a test secret. With the mentioned package it should be possible that a value in the application.properties file get replaced automagically with the according secret in a Azure key vault.
Do you think this package should work with a Citrus Framework project or is it not expected to work since it needs a Spring Boot application?
Would it be sensible and would you suggest to convert a Citrus Framework Spring project into a Citrus Framework Spring Boot project or is this non sense?
What I've tried so far
I have tried to integrate "spring-cloud-azure-starter-keyvault-secrets" as described in the official docs under "Use Spring Key Vault PropertySource".
The value in the application.properties does not get replaced as expected.
Thank you!
The text was updated successfully, but these errors were encountered:
pablopaul
changed the title
Citrus Framework: Spring vs Spring Boot
Citrus Framework: Spring vs Spring Boot / spring-cloud-azure-starter-keyvault-secrets usage
Jun 24, 2024
pablopaul
changed the title
Citrus Framework: Spring vs Spring Boot / spring-cloud-azure-starter-keyvault-secrets usage
Citrus Framework: Spring vs Spring Boot / spring-cloud-azure-starter-keyvault-secrets Usage
Jun 24, 2024
Do you think this package should work with a Citrus Framework project or is it not expected to work since it needs a Spring Boot application?
I would expect it to work out of the box, with regards to the comment below...
Would it be sensible and would you suggest to convert a Citrus Framework Spring project into a Citrus Framework Spring Boot project or is this non sense?
That is a sensible decision. You could then do something like the below:
@SpringBootTest(classes = { AzureConfiguration.class })
classMyTest {
// Continue with the test here...
}
Citrus Version
4.1.0
Question
I want to use spring-cloud-azure-starter-keyvault-secrets to securely store and retrieve a test secret. With the mentioned package it should be possible that a value in the
application.properties
file get replaced automagically with the according secret in a Azure key vault.Do you think this package should work with a Citrus Framework project or is it not expected to work since it needs a Spring Boot application?
Would it be sensible and would you suggest to convert a Citrus Framework Spring project into a Citrus Framework Spring Boot project or is this non sense?
What I've tried so far
I have tried to integrate "spring-cloud-azure-starter-keyvault-secrets" as described in the official docs under "Use Spring Key Vault PropertySource".
The value in the
application.properties
does not get replaced as expected.Thank you!
The text was updated successfully, but these errors were encountered: