forked from nimbolus/terraform-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
146 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Clients | ||
|
||
## Vault Client | ||
|
||
Requests against a Vault server are handled by this client. Since most requests need authentication, a Vault token can be defined in the environment or fetched by the client for example with a Kubernetes service account. | ||
|
||
**Config** | ||
| Environment Variable | Type | Default | Description | | ||
|----------------------|--------|--------------|--------------------------------------------------------------------------------------------------------------------------------| | ||
| VAULT_ADDR | string | -- | see [Vault Environment Variables](https://www.vaultproject.io/docs/commands#environment-variables) | | ||
| VAULT_TOKEN | string | -- | see [Vault Environment Variables](https://www.vaultproject.io/docs/commands#environment-variables) | | ||
| VAULT_KUBE_AUTH_NAME | string | `kubernetes` | Name of the Kubernetes auth backend mount point, see [Vault Kubernetes Auth](https://www.vaultproject.io/docs/auth/kubernetes) | | ||
| VAULT_KUBE_AUTH_ROLE | string | -- | Name of the Kubernetes auth backend role, see [Vault Kubernetes Auth](https://www.vaultproject.io/docs/auth/kubernetes) | | ||
|
||
## Redis Client | ||
|
||
This client handles Redis requests. | ||
|
||
**Config** | ||
| Environment Variable | Type | Default | Description | | ||
|----------------------|--------|------------------|-----------------------------------------| | ||
| REDIS_ADDR | string | `localhost:6379` | Host and port of the Redis instance | | ||
| REDIS_PASSWORD | string | -- | An optional password for authentication | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.