Fix HashiCorp lettercasing.

Fixes gh-54.
This commit is contained in:
Mark Paluch
2016-10-28 17:00:05 +02:00
parent 4df846bfd6
commit a7c4cff540
5 changed files with 6 additions and 6 deletions

View File

@@ -1,7 +1,7 @@
// Do not edit this file (e.g. go instead to docs/src/main/asciidoc)
Spring Cloud Vault Config provides client-side support for externalized configuration in a distributed system. With https://www.vaultproject.io[Hashicorp's Vault] you have a central place to manage external secret properties for applications across all environments. Vault can manage static and dynamic secrets such as username/password for remote applications/resources and provide credentials for external services such as MySQL, PostgreSQL, Apache Cassandra, MongoDB, Consul, AWS and more.
Spring Cloud Vault Config provides client-side support for externalized configuration in a distributed system. With https://www.vaultproject.io[HashiCorp's Vault] you have a central place to manage external secret properties for applications across all environments. Vault can manage static and dynamic secrets such as username/password for remote applications/resources and provide credentials for external services such as MySQL, PostgreSQL, Apache Cassandra, MongoDB, Consul, AWS and more.
== Features

View File

@@ -410,7 +410,7 @@ See also: https://www.vaultproject.io/docs/secrets/generic/index.html[Vault Docu
[[vault.config.backends.consul]]
=== Consul
Spring Cloud Vault can obtain credentials for Hashicorp Consul.
Spring Cloud Vault can obtain credentials for HashiCorp Consul.
The Consul integration requires the `spring-cloud-vault-config-consul`
dependency.

View File

@@ -15,7 +15,7 @@
<packaging>pom</packaging>
<name>Spring Cloud Vault</name>
<description>Configuration Integration with Hashicorp Vault</description>
<description>Configuration Integration with HashiCorp Vault</description>
<modules>
<module>spring-cloud-vault-dependencies</module>

View File

@@ -22,7 +22,7 @@ import org.springframework.cloud.vault.config.VaultSecretBackendDescriptor;
import lombok.Data;
/**
* Configuration properties for Hashicorp Consul.
* Configuration properties for HashiCorp Consul.
*
* @author Mark Paluch
*/
@@ -51,4 +51,4 @@ public class VaultConsulProperties implements VaultSecretBackendDescriptor {
*/
@NotEmpty
private String tokenProperty = "spring.cloud.consul.token";
}
}

View File

@@ -11,7 +11,7 @@
<artifactId>spring-cloud-vault-config</artifactId>
<name>Spring Cloud Vault Configuration Integration</name>
<description>Configuration Integration with Hashicorp Vault</description>
<description>Configuration Integration with HashiCorp Vault</description>
<dependencies>
<dependency>