spring: application: name: spring-cloud-config-server cloud: config: server: svn: uri: http://192.168.0.6/svn/repo/config-repo username: your_username password: your_password default-label: trunk profiles: active: subversion
Only give the configuration access to what it needs. If a config only needs to read balances, do not give it permission to move money. svb configs work
Rollout strategies
One subtle but important consideration when using SVN (or Git) as a backend is the working directory location. By default, Spring Cloud Config checks out VCS repositories into the system temporary directory with a random subfolder pattern like /tmp/config-repo-<randomid> . svb configs work