Skip to content
Merged
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
27 changes: 21 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ ui:
theme: "dark"
show_hidden_secrets: false

vaults:
profiles:
local:
address: "http://localhost:8200"
auth_method: "token"
Expand All @@ -82,8 +82,9 @@ For complete example, see [vui.yaml](./configs/vui.yaml)

#### LDAP Authentication
```yaml
vaults:
profiles:
ldap_vault:
engine: vault
address: "https://vault.company.com"
auth_method: "ldap"
namespace: "production"
Expand All @@ -94,7 +95,7 @@ vaults:

#### AWS IAM Authentication
```yaml
vaults:
profiles:
aws_vault:
address: "https://vault.company.com"
auth_method: "aws"
Expand All @@ -108,7 +109,7 @@ vaults:

#### Kubernetes Authentication
```yaml
vaults:
profiles:
k8s_vault:
address: "https://vault.company.com"
auth_method: "kubernetes"
Expand All @@ -120,7 +121,7 @@ vaults:

#### JWT Authentication
```yaml
vaults:
profiles:
jwt_vault:
address: "https://vault.company.com"
auth_method: "jwt"
Expand All @@ -132,7 +133,7 @@ vaults:

#### Certificate Authentication
```yaml
vaults:
profiles:
cert_vault:
address: "https://vault.company.com"
auth_method: "cert"
Expand All @@ -143,6 +144,20 @@ vaults:
key_path: "/path/to/client.key"
```

#### AWS SecretsManager

```yaml
profiles:
aws_secretsmanager:
engine: aws/secretsmanager
auth_method: "aws"
auth_config:
aws_access_key_id: "${AWS_ACCESS_KEY_ID}"
aws_secret_access_key: "${AWS_SECRET_ACCESS_KEY}"
aws_session_token: "${AWS_SESSION_TOKEN}"
aws_region: "us-east-1"
```

## Installation

### Download from Release
Expand Down
11 changes: 11 additions & 0 deletions configs/vui.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,3 +91,14 @@ profiles:
auth_config:
azure_role: "vui-azure-role"
azure_resource: "TODO"

aws-secretsmanager:
engine: "aws/secretsmanager"
address: "http://localhost:4566"
auth_method: "aws"
namespace: ""
auth_config:
aws_region: "us-east-1"
aws_access_key_id: "${AWS_ACCESS_KEY_ID}"
aws_secret_access_key: "${AWS_SECRET_ACCESS_KEY}"
aws_session_token: "${AWS_SESSION_TOKEN}"
Loading