From a6952c7a0663578506a322a63251c203d5c69513 Mon Sep 17 00:00:00 2001 From: Mark Harris <99300636+p7-mark@users.noreply.github.com> Date: Wed, 1 May 2024 03:40:35 +1000 Subject: [PATCH] [Resolves #1460] Update `NO_ECHO_REPLACEMENT` (#1461) Update NO_ECHO_REPLACEMENT to remove some false positives when calling sceptre diff on stacks containing parameters with NoEcho: True. --- sceptre/diffing/stack_differ.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sceptre/diffing/stack_differ.py b/sceptre/diffing/stack_differ.py index 6f1603ec6..e49ef665d 100644 --- a/sceptre/diffing/stack_differ.py +++ b/sceptre/diffing/stack_differ.py @@ -102,7 +102,7 @@ class StackDiffer(Generic[DiffType]): "DELETE_COMPLETE", ] - NO_ECHO_REPLACEMENT = "***HIDDEN***" + NO_ECHO_REPLACEMENT = "****" def __init__(self, show_no_echo=False): """Initializes the StackDiffer.