Fix HashiCorp lettercasing.

Fixes gh-33.
This commit is contained in:
Mark Paluch
2016-10-28 16:57:45 +02:00
parent 4e507f209e
commit 0a4c902ec7
4 changed files with 15 additions and 15 deletions

View File

@@ -6,7 +6,7 @@ image::https://spring.io/badges/spring-vault/snapshot.svg[link=http://projects.s
Spring Vault provides client-side support for accessing, storing and revoking secrets.
With https://www.vaultproject.io[Hashicorp's Vault] you have a central place to manage external secret data for applications across all environments.
With https://www.vaultproject.io[HashiCorp's Vault] you have a central place to manage external secret data for applications across all environments.
Vault can manage static and dynamic secrets such as application data, username/password for remote applications/resources and provide credentials for external services such as MySQL, PostgreSQL, Apache Cassandra, Consul, AWS and more.
== Getting Help
@@ -160,7 +160,7 @@ public class AppConfig extends AbstractVaultConfiguration {
*/
@Override
public VaultEndpoint vaultEndpoint() {
return new VaultEndpoint();
return new VaultEndpoint();
}
/**
@@ -170,7 +170,7 @@ public class AppConfig extends AbstractVaultConfiguration {
*/
@Override
public ClientAuthentication clientAuthentication() {
return new TokenAuthentication("…");
return new TokenAuthentication("…");
}
}
----
@@ -184,18 +184,18 @@ and then use `VaultTemplate` through its interface `VaultOperations`:
public class MyApp {
@Autowired VaultOperations vaultOperations;
public void useVault() {
Secrets secrets = new Secrets();
secrets.username = "hello";
secrets.password = "world";
vaultOperations.write("secret/myapp", secrets);
VaultResponseSupport<Secrets> response = vaultOperations.read("secret/myapp", Secrets.class);
System.out.println(response.getData().getUsername());
vaultOperations.delete("secret/myapp");
}
}

View File

@@ -41,7 +41,7 @@ badges:
Spring Vault provides familiar Spring abstractions and client-side support for accessing, storing and revoking secrets. It offers both low-level and
high-level abstractions for interacting with Vault, freeing the user from infrastructural concerns.
With [Hashicorp's Vault](https://www.vaultproject.io) you have a central place to manage external secret data for applications across all environments.
With [HashiCorp's Vault](https://www.vaultproject.io) you have a central place to manage external secret data for applications across all environments.
Vault can manage static and dynamic secrets such as application data, username/password for remote applications/resources and provide credentials for external services such as MySQL, PostgreSQL, Apache Cassandra, Consul, AWS and more.
{% endcapture %}

View File

@@ -1,11 +1,11 @@
[[preface]]
= Preface
The Spring Vault project applies core Spring concepts to the development of solutions using Hashicorp Vault. We provide a "template" as a high-level abstraction for storing and querying documents. You will notice similarities to the REST support in the Spring Framework.
The Spring Vault project applies core Spring concepts to the development of solutions using HashiCorp Vault. We provide a "template" as a high-level abstraction for storing and querying documents. You will notice similarities to the REST support in the Spring Framework.
This document is the reference guide for Spring Vault. It explains Vault concepts and semantics and the syntax.
This section provides some basic introduction to Spring and Vault. The rest of the document refers only to Spring Vault features and assumes the user is familiar with Hashicorp Vault as well as Spring concepts.
This section provides some basic introduction to Spring and Vault. The rest of the document refers only to Spring Vault features and assumes the user is familiar with HashiCorp Vault as well as Spring concepts.
[[get-started:first-steps:spring]]
== Knowing Spring
@@ -27,9 +27,9 @@ The jumping off ground for learning about Vault is https://www.vaultproject.io[w
* The online shell provides a convenient way to interact with a Vault instance in combination with the online tutorial.
* https://www.vaultproject.io/intro/index.html[Hashicorp Vault Introduction]
* https://www.vaultproject.io/intro/index.html[HashiCorp Vault Introduction]
* https://www.vaultproject.io/docs/index.html[Hashicorp Vault Documentation]
* https://www.vaultproject.io/docs/index.html[HashiCorp Vault Documentation]
[[requirements]]
== Requirements

View File

@@ -9,8 +9,8 @@ This part of the reference documentation explains the core functionality offered
<<vault.core>> introduces the Vault module feature set.
Spring Vault provides client-side support for accessing, storing and revoking secrets.
With https://www.vaultproject.io[Hashicorp's Vault] you have a central place to
With https://www.vaultproject.io[HashiCorp's Vault] you have a central place to
manage external secret data for applications across all environments.
Vault can manage static and dynamic secrets such as application data,
username/password for remote applications/resources and provide credentials
Vault can manage static and dynamic secrets such as application data,
username/password for remote applications/resources and provide credentials
for external services such as MySQL, PostgreSQL, Apache Cassandra, Consul, AWS and more.