From 4a9048491c96951ff2c58cb6ffe4bd1a934ff820 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simen=20Heggest=C3=B8yl?= Date: Wed, 13 Nov 2024 13:19:23 +0100 Subject: [PATCH] Don't delete keys from SSM by default It was noted by a user that the default choice for all "do you want to delete stuff?" questions is "no", except for the question about whether you want to delete keys from Parameter Store. Change that default to be in line with the others. --- okdata/cli/commands/pubs/questions.py | 1 + 1 file changed, 1 insertion(+) diff --git a/okdata/cli/commands/pubs/questions.py b/okdata/cli/commands/pubs/questions.py index 992f5d0..b7eda85 100644 --- a/okdata/cli/commands/pubs/questions.py +++ b/okdata/cli/commands/pubs/questions.py @@ -216,6 +216,7 @@ def q_delete_from_aws(): "name": "delete_from_aws", "message": "Delete key from AWS Parameter Store?", "auto_enter": False, + "default": False, }