From 7c00c276ee39df4c1d4d74be8e747568457ee5f9 Mon Sep 17 00:00:00 2001 From: ichandrabhatta <82908561+ichandrabhatta@users.noreply.github.com> Date: Thu, 15 Aug 2024 14:24:19 -0700 Subject: [PATCH] Update cli-int.md The environment variables exported should be prefixed with FOO and s3 prefix needs to be removed for the example to work as expected. There is a typo in the variable names. --- content/cli-int.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/cli-int.md b/content/cli-int.md index 168f27e0..2cf6f628 100644 --- a/content/cli-int.md +++ b/content/cli-int.md @@ -70,8 +70,8 @@ CLI allows to provide variable values via usage of one or more of the following - `--vars-env=prefix` flag sets variable values found in prefixed environment variables (casing is important) ```shell - export FOO_s3_access_key_id=some-key - export FOO_s3_access_secret_key=some-secret + export FOO_access_key_id=some-key + export FOO_access_secret_key=some-secret bosh interpolate base.yml --vars-env FOO # s3_access_key_id: some-key