We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed87b87 commit f9f0bfbCopy full SHA for f9f0bfb
infra/vault/oci-os/vault-oci-os-functions.env
@@ -6,7 +6,7 @@
6
function set_secret() {
7
local SECRET_NAME="$1"
8
local SECRET_VALUE="$2"
9
- if ! echo -n "$!" | oci os object put --bucket-name $VAULT_BUCKET --name "$SECRET_NAME" --file - >/dev/null 2>&1; then
+ if ! echo -n "$SECRET_VALUE" | oci os object put --bucket-name $VAULT_BUCKET --name "$SECRET_NAME" --file - >/dev/null 2>&1; then
10
return 1
11
fi
12
}
0 commit comments