-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwat-import-milestone.py
87 lines (74 loc) · 2.79 KB
/
wat-import-milestone.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
import simplejson as json
from datetime import date, datetime
import boto3
import inquirer
import os
def json_serial(obj):
"""JSON serializer for objects not serializable by default json code"""
if isinstance(obj, (datetime, date)):
return obj.isoformat()
raise TypeError("Type %s not serializable" % type(obj))
## Region
os.system('clear')
account_client = boto3.client('account')
response = account_client.list_regions(MaxResults=50)
regions = []
for region in response['Regions']:
if region['RegionOptStatus'] == 'ENABLED' or region['RegionOptStatus'] == 'ENABLED_BY_DEFAULT':
regions = regions + [region['RegionName']]
questions = [
inquirer.List('region',
message="Region",
choices=regions,
),
]
region = inquirer.prompt(questions)
print(region)
client = boto3.client('wellarchitected', region_name=region['region'])
## Workload
# Clearing the Screen
os.system('clear')
workloads = client.list_workloads()['WorkloadSummaries']
workload_names = []
for o in workloads:
workload_names = workload_names + [o['WorkloadName']]
questions = [
inquirer.List('WorkloadName',
message="Workload",
choices=workload_names,
),
]
answer = inquirer.prompt(questions)
selected_workload = next((x for x in workloads if x['WorkloadName'] == answer['WorkloadName']), None)
# read JSON from file
with open('answers.json', 'r') as json_file:
data=json_file.read()
answers = json.loads(data)
for answer in answers:
print("{}: {}".format(answer['PillarId'], answer['QuestionTitle']))
formated_choice_answers = {}
for i in range(0, len(answer['ChoiceAnswers'])):
if answer['ChoiceAnswers'][i]['Status'] == "SELECTED":
continue # skip
elif answer['ChoiceAnswers'][i]['Reason'] == "":
answer['ChoiceAnswers'][i]['Reason'] = "NONE"
formated_choice_answers[answer['ChoiceAnswers'][i]['ChoiceId']] = {
'Status': answer['ChoiceAnswers'][i]['Status'],
'Reason': answer['ChoiceAnswers'][i]['Reason'],
'Notes': answer['ChoiceAnswers'][i]['Notes']
}
if "Notes" not in answer:
answer['Notes'] = ""
if "Reason" not in answer:
answer['Reason'] = "NONE"
response = client.update_answer(
WorkloadId=selected_workload['WorkloadId'],
LensAlias=answer['LensAlias'],
QuestionId=answer['QuestionId'],
SelectedChoices=answer['SelectedChoices'],
ChoiceUpdates=formated_choice_answers,
Notes=answer['Notes'],
IsApplicable=answer['IsApplicable'],
Reason=answer['Reason']
)
# print(json.dumps(answers, default=json_serial, indent=4))