spring-cloud-config
spring-cloud-config copied to clipboard
External configuration (server and client) for Spring Cloud
The `JGitEnvironmentRepository` has the method called `containsBranch` that is checking whether `label` is branch or not (line 743). Imaging we have label = foo branch = feature/foo tag = foo...
spring-cloud-config-server configured to use a git repository throws `TransportException with error code 302 Found` when that repository gets redirected (e.g. moved to a diferent group/organization). Fixes [issue 2123](https://github.com/spring-cloud/spring-cloud-config/issues/2123) Version :...
As described in #2130 , regex `.*[^-].*` still matches `"foo-db.properties"`. So we can use `[^-]*` or `[^\\.]*` to solve the problem. According to #2083 , we should support dashes "-"...
I'm using org.springframework.cloud:spring-cloud-config-server:3.1.0 According to the doc https://docs.spring.io/spring-cloud-config/docs/current/reference/html/#_quick_start The HTTP service has resources in the following form: ``` /{application}/{profile}[/{label}] /{application}-{profile}.yml /{label}/{application}-{profile}.yml /{application}-{profile}.properties /{label}/{application}-{profile}.properties ``` For example: ``` curl localhost:8888/foo/development curl...
**Describe the bug** spring-cloud-config v3.1.3: spring-cloud-config-server configured to use a git repository throws TransportException with error code 302 Found when that repository gets redirected (e.g. moved to a diferent group/organization...
**Is your feature request related to a problem? Please describe.** Not a problem but rather making tests run against real integration. **Describe the solution you'd like** Currently, all of AWS...
**Is your feature request related to a problem? Please describe.** In order to track property changes between different releases, we use labels. So, e.g. for the Git backend, we tag...
Implements versioning through labels in AWS SecretsManager backend. To define a default label, set `spring.cloud.config.server.aws-secretsmanager.default-label`. By default it is the active version (`AWSCURRENT`) is going to be used. E.g.: ```yaml...
Since Vault allows for multiple secrets engines, it seems reasonable to expect that one might use multiple engines for the same project. For example, Vault supports database secrets engines that...
When I provide vault token, I'm getting keys from vault and git: ``` curl -X "GET" "http://localhost:8080/myservice.properties" -H "X-Config-Token: 27004d54-f1ac-31eb-572e-7fb1445a6be7" app.setting1: placeholder1.value placeholder1: placeholder1.value vaultkey1: secret ``` When I go...