From d669a5a83efab9cdfa1fa45ada9feadda595ff28 Mon Sep 17 00:00:00 2001 From: John G G Date: Tue, 21 Apr 2020 10:03:54 -0400 Subject: [PATCH] Fix api-key type Signed-off-by: John Gerlock --- docs/openfaas-cloud/secrets.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/openfaas-cloud/secrets.md b/docs/openfaas-cloud/secrets.md index 41199857..7d5eed34 100644 --- a/docs/openfaas-cloud/secrets.md +++ b/docs/openfaas-cloud/secrets.md @@ -35,7 +35,7 @@ So if we wanted to seal a single secret called `api-key` with a value of `test12 ```sh faas-cli cloud seal --name username-my-secrets \ - --literal api-key=1234 + --literal api-key=test1234 ``` Your function will access the secret via: @@ -46,7 +46,7 @@ If you have more than one secret you can enter additional `--literal` flags: ```sh faas-cli cloud seal --name username-my-secrets \ - --literal api-key=1234 \ + --literal api-key=test1234 \ --literal hostname=myhost.com ```