Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ spring:
config:
server:
git:
uri: https://github.com/myorg/\{application}
uri: https://github.com/myorg/{application}
----

You can also support a "`one repository per profile`" policy by using a similar pattern but with
Expand All @@ -101,7 +101,7 @@ spring:
config:
server:
git:
uri: https://github.com/\{application}
uri: https://github.com/{application}
----

where `\{application}` is provided at request time in the following format: `organization(\{special-string})application`.
Expand Down Expand Up @@ -385,7 +385,7 @@ spring:
server:
git:
uri: https://github.com/spring-cloud-samples/config-repo
search-paths: '\{application}'
search-paths: '{application}'
----

The preceding listing causes a search of the repository for files in the same name as the directory (as well as the top level).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ If you have configured a keystore (`encrypt.keystore.location`), the default loc
[source,yaml]
----
foo:
bar: `\{cipher}{key:testkey}...`
bar: '{cipher}{key:testkey}...'
----

The locator looks for a key named "testkey".
Expand Down
Loading