Skip to content

Commit

Permalink
fix: fix link by adding new directory (#83)
Browse files Browse the repository at this point in the history
* fix: fix link by adding new directory

Signed-off-by: Bence Csati <bcsati@cisco.com>

* chore

Signed-off-by: Bence Csati <bcsati@cisco.com>

* fix

Signed-off-by: Bence Csati <bcsati@cisco.com>

---------

Signed-off-by: Bence Csati <bcsati@cisco.com>
  • Loading branch information
csatib02 committed Feb 23, 2024
1 parent 2a31825 commit 1436f45
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion examples/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Usage Examples

Discover a range of examples that highlight the functionalities of **secret-init**:
- [Standalone tool](secret-init-as-a-standalone-tool)
- [Standalone tool](standalone-tool.md)
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ mkdir -p example
```

### Prepare File provider

```bash
# Create secrets for the file provider
printf "secret-value" >> "example/secret-file"
Expand All @@ -29,6 +30,7 @@ printf "super-secret-value" >> "example/super-secret-value"
```

### Prepare Vault provider

```bash
# Create a tokenfile
printf $VAULT_TOKEN > "example/token-file"
Expand All @@ -42,6 +44,7 @@ vault kv put secret/test/aws AWS_ACCESS_KEY_ID=secretId AWS_SECRET_ACCESS_KEY=s3
```

## Define secrets to inject

```bash
# Export environment variables
export FILE_SECRET_1=file:$PWD/example/secret-file
Expand Down

0 comments on commit 1436f45

Please sign in to comment.