From 6c57188149b53e1b347c19bc9003d41d4f6cfeb9 Mon Sep 17 00:00:00 2001 From: "Miguel A. Calles, MBA" <44813512+miguel-a-calles-mba@users.noreply.github.com> Date: Thu, 31 Oct 2019 15:38:45 -0700 Subject: [PATCH] Update variables.md --- docs/providers/aws/guide/variables.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/providers/aws/guide/variables.md b/docs/providers/aws/guide/variables.md index 50d8c49c7..08078cf12 100644 --- a/docs/providers/aws/guide/variables.md +++ b/docs/providers/aws/guide/variables.md @@ -673,13 +673,14 @@ provider: apiGateway: ${strToBool(${ssm:API_GW_DEBUG_ENABLED})} ``` -Note: These are examples of how the conversion works. +These are examples that explain how the conversion works: ```plaintext ${strToBool(true)} => true ${strToBool(false)} => false ${strToBool(0)} => false ${strToBool(1)} => true +${strToBool(2)} => Error ${strToBool(null)} => Error ${strToBool(anything)} => Error ```