You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Cleanup fix - add ability to change AcceleratorName (#684)
* edited to support cleanup without directory services enabled
* added ability to change AcceleratorName in prefix
* corrected pattern matching for codecommit
* corrected repo name
* corrected to reference AccaleratorPrefix
* tweak readme.md
Co-authored-by: Charlie Llewellyn <cjl@amazon.co.uk>
Co-authored-by: Brian969 <56414362+Brian969@users.noreply.github.com>
Copy file name to clipboardExpand all lines: reference-artifacts/Custom-Scripts/SEA-uninstall/aws-sea-cleanup.py
+20-6Lines changed: 20 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -9,13 +9,15 @@
9
9
importsys
10
10
importargparse
11
11
importbase64
12
+
importre
12
13
fromtabulateimporttabulate
13
14
fromosimportpath
14
15
15
16
16
17
parser=argparse.ArgumentParser(
17
18
description="A development script that cleans up resources deployed by the accelerator. Use Administrator AWS credentials in the master account when running this script."
18
19
)
20
+
parser.add_argument('--AcceleratorPrefix', default='PBMMAccel', help='The value set in AcceleratorPrefix')
0 commit comments