From d911130ced464b85a0da196881eefa74d9cb3a79 Mon Sep 17 00:00:00 2001 From: mmahacek Date: Wed, 27 Aug 2025 09:19:12 -0700 Subject: [PATCH] Update work-with-params-secrets.md Update note about using environment variables in lightweight monitors to wrap with quotes to ensure proper replacement. --- .../observability/synthetics/work-with-params-secrets.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/solutions/observability/synthetics/work-with-params-secrets.md b/solutions/observability/synthetics/work-with-params-secrets.md index 1b983dd49e..eae73d1101 100644 --- a/solutions/observability/synthetics/work-with-params-secrets.md +++ b/solutions/observability/synthetics/work-with-params-secrets.md @@ -84,7 +84,7 @@ You can use params in both lightweight and browser monitors created in either a ### In a Synthetics project [synthetics-params-secrets-use-project] -For lightweight monitors in a Synthetics project, wrap the name of the param in `${}` (for example, `${my_url}`). +For lightweight monitors in a Synthetics project, wrap the name of the param in `"${}"` (for example, `"${my_url}"`). ```yaml - type: http @@ -147,4 +147,4 @@ export default { my_url: process.env.MY_URL } }; -``` \ No newline at end of file +```