From 8f3b9e28ec08cb325ed2ce224f48ae55d6de2e60 Mon Sep 17 00:00:00 2001 From: Will-NOQ <102608210+Will-NOQ@users.noreply.github.com> Date: Tue, 16 May 2023 15:04:38 -0500 Subject: [PATCH] Fixed wizard prompt when editing an AWS account. --- iambic/config/wizard.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/iambic/config/wizard.py b/iambic/config/wizard.py index f2cc6efc9..3fee5c76d 100644 --- a/iambic/config/wizard.py +++ b/iambic/config/wizard.py @@ -991,7 +991,7 @@ def configuration_wizard_aws_account_edit(self): else: account = self.config.aws.accounts[0] - choices = ["Go back", "Update IAMbic control", "Update Region"] + choices = ["Go back", "Update region"] if not account.org_id: choices.append("Update name") @@ -1002,7 +1002,7 @@ def configuration_wizard_aws_account_edit(self): ).unsafe_ask() if action == "Go back": return - elif action == "Update name": + elif action == "Update region": account.default_region = set_aws_region( "What region should IAMbic use?", account.default_region )