Skip to content

Commit

Permalink
Read the number of secrets to put from first arg
Browse files Browse the repository at this point in the history
  • Loading branch information
slarwise committed Aug 12, 2024
1 parent 5df2d81 commit 03755d9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/populate
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
#!/bin/bash

set -e

export VAULT_ADDR=http://127.0.0.1:8200
export VAULT_TOKEN=dev-only-token

n_arbitrary_secrets=45
n_arbitrary_secrets=${1:-45}

echo '{
"roles": ["reader", "writer"],
Expand Down

0 comments on commit 03755d9

Please sign in to comment.