From 7a52392bbb563dba7d205d26a3324a37c2612997 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antti=20Kivim=C3=A4ki?= Date: Mon, 18 Dec 2023 14:02:03 +0200 Subject: [PATCH] Add note about environment variables --- docs/site/docs/usage.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/site/docs/usage.md b/docs/site/docs/usage.md index 6c1e514e..6c6714f6 100644 --- a/docs/site/docs/usage.md +++ b/docs/site/docs/usage.md @@ -61,10 +61,15 @@ jalapeno execute oci://ghcr.io/futurice/jalapeno/examples/variable-types:v0.0.0 :::tip -You can also set the values with `--set` flag when executing the recipe. For example: +You can also set the values with `--set` flag or with environment variables when executing the recipe. For example: ```bash jalapeno execute my-recipe --set MY_VAR=foo + +# OR + +export JALAPENO_VAR_MY_VAR=foo +jalapeno execute my-recipe ``` :::